this post was submitted on 22 Feb 2024
917 points (95.7% liked)

Programmer Humor

19187 readers
1182 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Omgpwnies@lemmy.world 5 points 7 months ago (2 children)

Python is the language of choice for most test automation

[–] SpaceNoodle@lemmy.world 5 points 7 months ago (3 children)

If I can't do it as a Bash one-liner, I'm using Python

[–] Omgpwnies@lemmy.world 3 points 7 months ago* (last edited 7 months ago) (1 children)

subprocess.Popen(["bash one-liner"], stdout=PIPE, stderr-PIPE, text=True)

[–] SpaceNoodle@lemmy.world 4 points 7 months ago* (last edited 7 months ago)
["bash", "one-liner"]
[–] fluxion@lemmy.world 1 points 6 months ago (1 children)

I use perl, but everyone hates me and would rather rewrite my little scripts in python than bother changing a single line

[–] SpaceNoodle@lemmy.world 1 points 6 months ago (1 children)

You're right, everyone hates you.

[–] fluxion@lemmy.world 1 points 6 months ago (1 children)
[–] SpaceNoodle@lemmy.world 1 points 6 months ago (1 children)

The good news is that you can stop using Perl at any time.

[–] fluxion@lemmy.world 1 points 6 months ago (1 children)

For quick data parsing you'll have to pry it from my cold dead hands im afraid

[–] SpaceNoodle@lemmy.world 1 points 6 months ago (1 children)

That could be arranged. I could bash you over the head with a python.

[–] fluxion@lemmy.world 2 points 6 months ago

It's a kind offer, but my head is far too hard

[–] Shareni@programming.dev 0 points 6 months ago

Grug use go because it easier, faster, and compiles to share with friends of Grug

[–] smeg@feddit.uk 0 points 7 months ago (1 children)

Depends entirely what tests you're automating. Java codebase? Probably Java tests too. Anything web? Tests will be JS too, etc.

[–] Omgpwnies@lemmy.world 1 points 7 months ago (1 children)

Web testing is also done in python. Selenium has support in all major Python test frameworks. I've done SE-only tests in Robot, hybrid SE/Python using BDD with Behave, etc.

Unless I'm testing a language-specific API, I'm probably going to use Python...

[–] smeg@feddit.uk 1 points 7 months ago (1 children)

I'm guessing that's because you're a python developer though. If you're a frontend developer who knows JS then why wouldn't you use that for your tests? (Apart from the fact that JS is horrible, but you've already accepted that suffering by becoming a web dev)

[–] Omgpwnies@lemmy.world 3 points 7 months ago

I'm a test automation developer, I'm not necessarily bound by the platform that the application is written in unless I'm writing white-box tests.