├── .gitignore ├── Dockerfile ├── README.md ├── cypress.json ├── cypress ├── config │ ├── dev.json │ ├── hml.json │ ├── local.json │ └── prod.json ├── devops │ ├── Jenkinsfile │ ├── Jenkinsfile_local │ └── Jenkisfile2 ├── fixtures │ ├── example.json │ └── massa_de_teste.json ├── integration │ ├── API │ │ ├── DEL_users.spec.js │ │ ├── GET_list_products.spec.js │ │ ├── POST_create_product.spec.js │ │ ├── POST_create_users.spec.js │ │ ├── POST_login.spec.js │ │ └── PUT_edit_users.spec.js │ ├── GUI │ │ ├── create_project.spec.js │ │ ├── delete_project.spec.js │ │ └── edit_project.spec.js │ └── Massa_de_Testes │ │ ├── POST_create_product.spec.js │ │ └── POST_create_users.spec.js ├── massa_dados │ └── sets.js ├── performance │ ├── PT-Basico-API-Performance.jmx │ └── README-PERFORMANCE.MD ├── plugins │ └── index.js └── support │ ├── API │ └── commands_api.js │ ├── BD │ └── commands_bd.js │ ├── GUI │ └── commands_gui.js │ ├── index.js │ ├── page_elements │ └── sorry_page_elements.js │ └── utility.js ├── package.json └── performance ├── PT-Basico-API-Performance.jmx └── README-PERFORMANCE.MD /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/config/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/config/dev.json -------------------------------------------------------------------------------- /cypress/config/hml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/config/hml.json -------------------------------------------------------------------------------- /cypress/config/local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/config/local.json -------------------------------------------------------------------------------- /cypress/config/prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/config/prod.json -------------------------------------------------------------------------------- /cypress/devops/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/devops/Jenkinsfile -------------------------------------------------------------------------------- /cypress/devops/Jenkinsfile_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/devops/Jenkinsfile_local -------------------------------------------------------------------------------- /cypress/devops/Jenkisfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/devops/Jenkisfile2 -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/fixtures/massa_de_teste.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | { 4 | "data" : "value" 5 | } 6 | 7 | 8 | ] 9 | -------------------------------------------------------------------------------- /cypress/integration/API/DEL_users.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/API/DEL_users.spec.js -------------------------------------------------------------------------------- /cypress/integration/API/GET_list_products.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/API/GET_list_products.spec.js -------------------------------------------------------------------------------- /cypress/integration/API/POST_create_product.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/API/POST_create_product.spec.js -------------------------------------------------------------------------------- /cypress/integration/API/POST_create_users.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/API/POST_create_users.spec.js -------------------------------------------------------------------------------- /cypress/integration/API/POST_login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/API/POST_login.spec.js -------------------------------------------------------------------------------- /cypress/integration/API/PUT_edit_users.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/API/PUT_edit_users.spec.js -------------------------------------------------------------------------------- /cypress/integration/GUI/create_project.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/GUI/create_project.spec.js -------------------------------------------------------------------------------- /cypress/integration/GUI/delete_project.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/GUI/delete_project.spec.js -------------------------------------------------------------------------------- /cypress/integration/GUI/edit_project.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/GUI/edit_project.spec.js -------------------------------------------------------------------------------- /cypress/integration/Massa_de_Testes/POST_create_product.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/Massa_de_Testes/POST_create_product.spec.js -------------------------------------------------------------------------------- /cypress/integration/Massa_de_Testes/POST_create_users.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/integration/Massa_de_Testes/POST_create_users.spec.js -------------------------------------------------------------------------------- /cypress/massa_dados/sets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/massa_dados/sets.js -------------------------------------------------------------------------------- /cypress/performance/PT-Basico-API-Performance.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/performance/PT-Basico-API-Performance.jmx -------------------------------------------------------------------------------- /cypress/performance/README-PERFORMANCE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/performance/README-PERFORMANCE.MD -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/API/commands_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/support/API/commands_api.js -------------------------------------------------------------------------------- /cypress/support/BD/commands_bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/support/BD/commands_bd.js -------------------------------------------------------------------------------- /cypress/support/GUI/commands_gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/support/GUI/commands_gui.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /cypress/support/page_elements/sorry_page_elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/support/page_elements/sorry_page_elements.js -------------------------------------------------------------------------------- /cypress/support/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/cypress/support/utility.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/package.json -------------------------------------------------------------------------------- /performance/PT-Basico-API-Performance.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/performance/PT-Basico-API-Performance.jmx -------------------------------------------------------------------------------- /performance/README-PERFORMANCE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmamaximo2/projeto_base_gui_api_tests/HEAD/performance/README-PERFORMANCE.MD --------------------------------------------------------------------------------