Skip to content

soumyarout80/bdt_test_suit_user_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Behavior-driven testing (or BDT)

Behavior-driven testing (or BDT) is an agile software testing technique that encourages collaboration between developers, QA and non-technical or business participants in a software project.


Execute test from command line

Sample output

Subject Pronouns

  1. To trigger all test at once.
behave 
  1. To trigger test for specific feature.
behave features/user_api.feature
  1. To trigger test for specific tag in a scenario.
behave features/user_api.feature --tags=CreateUser
  1. To trigger test for multiple tags in a feature.
behave features/user_api.feature --tags=CreateUser,UpdateUser
  1. The command shall not execute the Scenario which is tagged with UpdateUser.
behave features/user_api.feature --tags=~UpdateUser

Execute test using docker

Sample output

Subject Pronouns

  1. Build docker image
docker build -t bdd-test .
  1. To trigger test using docker image.
docker run bdd-test
  1. To trigger feature using docker argument.
docker run -it bdd-test features/user_api.feature
  1. To trigger a specific tag or scenario from feature
docker run -it bdd-test features/user_api.feature --tags=CreateUser

Directory structure

Next, you’ll add a new file to this repository.

Feature files

  1. User API Feature

Steps directory

Steps Directory For Features

Steps for features

  1. Steps For User API

License

MIT License

Copyright (c) 2022 Rendered Text

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.