Note that there are some explanatory texts on larger screens.

plurals
  1. PObest practice to write real bdd cucumber feature/ scenarios
    primarykey
    data
    text
    <p>We are new to bdd/ cucumber and discussing in out team how to write correct feature/ scenarios. </p> <p>We came up with the two following approaches, which should almost describe/ solve the same requirement:</p> <pre><code>Feature: Give access to dossiers to other registered users As a logged in user In order to show my dossier to other users I want to give other users (limited) access to my dossiers Background: Given I am logged in as "Oliver" And another user "Pascal" exists And another user "Tobias" exists Scenario: I can give access to my own dossier When I grant access to "Pascal" with permisson "readonly" Then I should see "Access granted." And user "Pascal" should have permission "readonly" on dossier "Oliver" Scenario: I can give access to a created dossier Given I created a new dossier "Max Müller" When I grant access on dossier "Max Müller" to "Pascal" with permisson "readonly" Then I should see "Access granted." And user "Pascal" should have permission "readonly" on dossier "Max Müller" Scenario: I can give access to a managed dossier Given I manage the dossier from "Tobias" When I grant access on dossier "Tobias" to "Pascal" with permisson "readonly" Then I should see "Access granted." And user "Pascal" should have permission "readonly" on dossier "Tobias" Scenario: I cannot give access to a writable dossier Given I have write access to the dossier from "Tobias" When I follow "Grant access" Then I should see "You are not allowed to grant access on this dossier." Scenario: I cannot give access to a readonly dossier Given I have readonly access to the dossier from "Tobias" When I follow "Grant access" Then I should see "You are not allowed to grant access on this dossier." Scenario: I can give access to a dossier with an expiration date Given I created a new dossier "Max Müller" When I grant access on dossier "Max Müller" to "Pascal" with permisson "readonly" until "2020-01-01" Then I should see "Access granted till 2020-01-01." And user "Pascal" should have permission "readonly" on dossier "Max Müller" until "2020-01-01" Scenario: I cannot transfer a created dossier to a new owner who is already registered Given I created a new dossier "Max Müller" When I transfer dossier "Max Müller" to "Pascal" Then I should see "Pascal already has a dossier, transfer not possible." </code></pre> <p>The second one:</p> <pre><code>Feature: Grant access on dossiers to registered users As a logged in user In order to allow others to view/ manage dossiers I have access to I want to give access of those to other users Background: Given I am logged in as "gucki@email.com" And I am working with my own dossier Scenario: Invalid data entered When I visit the grant dossier access page And I press "Grant access" Then I should see a validation error on "eMail-Address" Scenario: Valid data entered Given a user "pascal@email.com" exists When I visit the grant dossier access page And I fill in "eMail-Address" with "pascal@email.com" And I select "readonly" from "Permissions" And I press "Grant access" Then I should see "Access granted." And I should be on the dossiers page Scenario: Valid data entered with expiry date Given a user "pascal@email.com" exists When I visit the grant dossier access page And I fill in "eMail-Address" with "pascal@email.com" And I select "readonly" from "Permissions" And I fill in "Valid until" with "2010-03-01" And I press "Grant access" Then I should see "Access granted till 2010-03-01." And I should be on the dossiers page Scenario: Display calendar on click on "Valid until" When I click on the field "Valid until" Then a calendar popup should be displayed When I click on "1943-01-02" Then the field "Valid until" should be have "1943-01-02" And the calendar popup should be hidden Scenario: Only allow to grant access to categories I have access to myself Given I have limited access to the working dossier When I visit the grant dossier access page Then I should not see categories I have no access to Scenario: Dossier with permission "manager" can only grant readonly, readwrite Given I have the permission "manager" on my working dossier When I visit the grant dossier access page Then I should only see the permissions "readonly, readwrite" Scenario: Dossier with permission "readwrite" is not allowed to grant any permissions Given I have the permission "readwrite" on my working dossier When I visit the grant dossier access page Then I should the see the error "You cannot grant access on this dossier!" And I should be on the dossiers page </code></pre> <p>Which one would you prefer and why?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload