summaryrefslogtreecommitdiff
path: root/qa/qa/scenario
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@15-9-stable-eev15.9.0-rc42GitLab Bot2023-02-204-4/+30
|
* Add latest changes from gitlab-org/gitlab@15-7-stable-eev15.7.0-rc42GitLab Bot2022-12-201-0/+13
|
* Add latest changes from gitlab-org/gitlab@15-6-stable-eev15.6.0-rc42GitLab Bot2022-11-172-2/+16
|
* Add latest changes from gitlab-org/gitlab@15-5-stable-eev15.5.0-rc42GitLab Bot2022-10-202-56/+0
|
* Add latest changes from gitlab-org/gitlab@15-4-stable-eev15.4.0-rc42GitLab Bot2022-09-1910-0/+136
|
* Add latest changes from gitlab-org/gitlab@15-3-stable-eev15.3.0-rc42GitLab Bot2022-08-182-4/+16
|
* Add latest changes from gitlab-org/gitlab@15-2-stable-eev15.2.0-rc42GitLab Bot2022-07-201-0/+2
|
* Add latest changes from gitlab-org/gitlab@15-0-stable-eev15.0.0-rc42GitLab Bot2022-05-192-37/+33
|
* Add latest changes from gitlab-org/gitlab@14-10-stable-eev14.10.0-rc42GitLab Bot2022-04-202-1/+2
|
* Add latest changes from gitlab-org/gitlab@14-9-stable-eev14.9.0-rc42GitLab Bot2022-03-182-0/+27
|
* Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42GitLab Bot2022-02-181-0/+3
|
* Add latest changes from gitlab-org/gitlab@14-7-stable-eev14.7.0-rc42GitLab Bot2022-01-203-1/+15
|
* Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42GitLab Bot2021-12-203-26/+16
|
* Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot2021-11-187-1/+55
|
* Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot2021-07-201-0/+13
|
* Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot2021-05-192-1/+10
|
* Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot2021-04-201-13/+0
|
* Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher2021-01-201-0/+13
|
* Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot2020-08-203-13/+4
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-0/+19
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-201-0/+13
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-271-13/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-041-2/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-232-2/+8
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-212-0/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-172-10/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-031-0/+13
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-211-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-251-0/+13
|
* Backport EE changes to the qa/ directoryresolve-new-qa-differencesYorick Peterse2019-08-291-0/+2
| | | | | Now that the qa/ directory uses the X_if_ee methods we can backport all these lines to CE.
* Reduce the CE/EE diff under qa/qa-reduce-ce-ee-diff-in-qa-folderRémy Coutable2019-08-141-3/+5
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* QA: Prefer `flat_map` over `map` + `flatten`Peter Leitzen2019-07-221-1/+1
|
* Run tests in parallel via parallel_testsMark Lapierre2019-07-091-0/+1
| | | | | | | | | | | | | Uses the parallel_tests gem to execute tests in multiple processes simultaneously on the same machine. Adds the `--parallel` CLI option that instructs the QA framework to use the parallel_tests executable. Tests need access to global state contained in `Runtime::Scenario` so when `--parallel` is invoked `Runtime::Scenario` is serialized to an environment variable, which is passed to parallel_tests, and then deserialized in `spec_helper`.
* Add frozen_string_literal to qa/frozen_string_literal_qaThong Kuah2019-04-139-0/+18
| | | | | This will be default in Ruby 3, so will be good to apply in QA ahead of time to be consistent.
* Set feature flag via command lineMark Lapierre2019-03-276-8/+56
| | | | | | | | | | | First attempt at allowing a feature flag to be set via the command line when running tests. This will enable the flag, run the tests, and then disable the flag. Using OptionParser meant changing how scenarios get the instance address, so this also allows the address to be set as a command line option. It's backwards compatible (you can still provide the address as the command line option after the scenario)
* Add e2e QA test for logging in using GitHub OAuthSanad Liaquat2019-02-011-0/+13
| | | | | Adds the test itself and the vendor page object model for GitHub login pages.
* Add missing frozen_string_literalqa-59-ldap-ssl-scenarioSanad Liaquat2018-10-252-0/+4
|
* Rename SSL to TLSSanad Liaquat2018-10-252-4/+4
|
* Renamed to ldap_no_ssl and ldap_sslSanad Liaquat2018-10-241-2/+2
|
* Added ldap_ssl tag to existing testSanad Liaquat2018-10-241-0/+11
|
* Initial commitSanad Liaquat2018-10-111-0/+13
| | | | | | | | | | Use ACCEPT_INSECURE_CERTS env var and fix step Simplify saml signin Fix rubo cop offence Add missing # frozen_string_literal: true
* [QA] Change Test::Sanity::Failing to Test::Sanity::FrameworkRémy Coutable2018-09-061-3/+4
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* [QA] Fix Specs::Runner that would always excluding the orchectsrated tagRémy Coutable2018-09-042-12/+3
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Merge branch 'qa-28' into 'master'Grzegorz Bizon2018-09-041-0/+18
|\ | | | | | | | | | | | | [QA] Add a new Test::Sanity::Failing scenario that always fails Closes gitlab-qa#28 See merge request gitlab-org/gitlab-ce!21477
| * [QA] Add a new Test::Sanity::Failing scenario that always failsRémy Coutable2018-09-031-0/+18
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Fix QA ObjectStorage not inheriting from Test::Instance::AllStan Hu2018-09-041-1/+1
|/
* Merge branch 'qa-cleanup-after-reorganization' into 'master'Sean McGivern2018-09-031-1/+1
|\ | | | | | | | | [QA] Remove the :core tag since we're not using it anymore See merge request gitlab-org/gitlab-ce!21436
| * [QA] Remove the :core tag since we're not using it anymoreRémy Coutable2018-08-301-1/+1
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Merge branch 'master' into sh-add-object-storage-qaStan Hu2018-08-296-6/+51
|\ \ | |/
| * Improve QA scenarios contexts & descriptions consistencyRémy Coutable2018-08-281-1/+1
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>