Mama told me not to come.

She said, that ain’t the way to have fun.

  • 0 Posts
  • 242 Comments
Joined 2 years ago
cake
Cake day: June 11th, 2023

help-circle




  • Yeah, I don’t get it. The only people looking at the results are devs, so we really don’t need the business requirement text.

    I could maybe understand if product owners were creating the requirements in the feature files and devs were implementing them in the code, but that never happens. So the whole cucumber library thing we have going on just feels annoying.

    It’s not the only thing we over-engineer. We have dependency injection when we only ever have one dependency (except in tests, in which case we could just use mocking). We take microservices to the extreme (we just broke out a couple hundred lines of code from a few thosand lines of code service). Our test code is unnecessarily reusable (test code is one place where DRY doesn’t really need to apply). And so on. This one in particular is especially annoying because it makes it harder to find the code without providing much benefit.

    Our QAs seem to like it, so whatever. I’ll still complain though.



  • These are for a mix of end to end and integration tests.

    I mostly do unit tests as a dev, so our tests are simple enough that they don’t benefit from more structure than being grouped by suite. E.g.:

    • AuthService
      • valid user creds can login
      • invalid user creds cannot login
      • non-existent user gets same error as wrong creds
    • UserSettingsService
      • can change language
      • cannot set empty password

    These don’t have long flows, so there’s no benefit to documenting steps (they usually have one step).

    My complaint about cucumber/gherkin isn’t with documenting steps, it’s with managing them in separate files. We have a Service.feature file that documents the scenario and the ServiceTest.java that documents the steps. I don’t see the point in having those be separate files, especially since the only people defining inputs and scenarios are the devs (dedicated QA in our case). We occasionally have our BE devs help write a few tests, and every time it’s a struggle for them to figure out where everything is. It just feels over-engineered.

    In unit tests, we parameterize our tests just like with cucumber, we just do so in the code. E.g. in Python:

    @parameterized.expand([(1, 2), (2, 4)])
    def test_duplicate(num, exp):
        res = dup(num)
        assert res == exp
    

    I would much prefer something like that in our end to end and integration tests.








  • Maybe that’s why I hate using it, or maybe I just hate testing frameworks that do more than run tests. Here’s what I want from a testing framework:

    • run tests in classes or modules
    • report output with some configurable name (javadoc comment, Python Docstring, etc)
    • some way to parameterize tests with different inputs
    • organized output that shows what failed
    • if it’s an integration test, keep track of failures over time

    Our QA uses cucumber and it works for them, so I only whine when I need to deal with it.