Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/qa/qa.rb
AgeCommit message (Collapse)Author
2019-07-02QA: transfer project specJennifer Louie
2019-05-20Implement dynamic validation on QA Pagesddavison
Elements now have the ability to be required on pages or not Currently using the default wait mechanism Altered the ElementWithPattern Cop to fit new splat for init
2019-04-16Add QA tests for the performance barSean McGivern
These are very high-level. Currently, they test: 1. That the performance bar appears. 2. That it has detailed metrics for Postgres and Gitaly. 3. That AJAX requests are included in the request selector.
2019-03-27Set feature flag via command lineMark Lapierre
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)
2019-03-13Add a new test to create a snippetRoman Verevkin
Add "smoke" tag to the test Fix links to views in Page Object files Review fixes Remove useless view block Implement Snippets::Show page object class Fix review suggestions Fix review suggestions 2 Fix test with empty snippets state Remove useless css class Fix issues
2019-03-11Skip contexts in quarantineMark Lapierre
This avoids running before/after blocks for tests that are in quarantine
2019-02-21Add smoke test for autodevopsddavison
Add tag validation on pipeline page
2019-02-19Refactor select_*_filter methodsSanad Liaquat
Also use refactor retry_on_excpetion and use it in select_*_filter methods
2019-02-11[CE] Improve `wait_for_push`Mark Lapierre
2019-02-01adding a spec for issues/310Mesut Güneş
2019-02-01Add e2e QA test for logging in using GitHub OAuthSanad Liaquat
Adds the test itself and the vendor page object model for GitHub login pages.
2019-01-30Fix flaky wiki create testMark Lapierre
There's an svg on the page that allows you to create a wiki page. The svg takes a fraction of a second to load after which the "Create your first page" button shifts up a bit. This can cause webdriver to miss the hit so we wait for the svg to load before clicking the button. Also update the elements used in the test to conform to our best practice. And replace `act` with `perform` Finally, remove the `before` block and `login` method, making the code slightly simpler.
2019-01-24Split `Page::Project::Menu` into separate submenusWalmyr Filho
https://gitlab.com/gitlab-org/quality/team-tasks/issues/84
2019-01-16Add test case to check that branches are correctly listed after CRUD operationsWalmyr
2019-01-03Collapsible Comments Test for IssuesRamya Authappan
2018-12-11Add tests for plain diff/email patch optionsZeff Morgan
Add spec file using before(:context) to reduce test time. With testing almost identical things, unnecessary to make them completely atomic. Includes two helper methods. Since the raw_content method is the only function needed on that page, created the method in the spec instead of adding another page object. Setup new project/commit page object and update project/show to add go_to_commit method. The go_to_commit method is near duplicate of go_to_file method, but decided to split them off to reduce overall refactoring and simplify language. Also add selectors to commit box partial and update qa.rb to load new page object.
2018-12-10Update E2E tests for Project overview UI changesMark Lapierre
Includes updates to how clone URLs are accessed.
2018-12-05Add e2e test: push mirroring over HTTPMark Lapierre
Adds an end-to-end test of push mirroring a repository over HTTP. Includes addition of QA selectors to views
2018-11-26Port ee changesSanad Liaquat
2018-11-05Rename QA::Factory to QA::ResourceLin Jen-Shin
* Factory::Base -> Resource::Base, and therefore: * Factory::Resource::Project -> Resource::Project
2018-10-31CE: Absorb product into factoryLin Jen-Shin
2018-10-30Renaming Secret Variables in the codebaseMarcel Amirault
2018-10-26Merge branch 'qa-59-ldap-ssl-scenario' into 'master'Stan Hu
E2E Test - LDAP login with SSL Closes gitlab-qa#59 See merge request gitlab-org/gitlab-ce!22574
2018-10-25Always use `attribute` to define the productLin Jen-Shin
2018-10-25Rename SSL to TLSSanad Liaquat
2018-10-24Renamed to ldap_no_ssl and ldap_sslSanad Liaquat
2018-10-24Added ldap_ssl tag to existing testSanad Liaquat
2018-10-20Log page actionsMark Lapierre
Override page object methods to log the actions taken by the methods before or after the action, as appropriate. Allow page object action logging to be turned on via a QA_DEBUG env var. Unlike CHROME_HEADLESS (and the soon to arrive VERBOSE), QA_DEBUG is false by default. QA_DEBUG is used instead of just DEBUG because that enables Selenium debug logging. Mask passwords entered into fields with a QA selector with 'password' in the name. Doesn't mask sensitive data entered into any other field.
2018-10-17First iteration to allow creating QA resources using the APIRémy Coutable
2018-10-17Extend Create New Merge Request test to also add a labelAleksandr Soborov
2018-10-12Add GitLab QA spec for adding a deploy tokenStan Hu
2018-10-11Merge branch 'qa-257-instance-wide-saml-sso' into 'master'Rémy Coutable
Instance SAML SSO e2e test Closes gitlab-qa#257 See merge request gitlab-org/gitlab-ce!22271
2018-10-11Initial commitSanad Liaquat
Use ACCEPT_INSECURE_CERTS env var and fix step Simplify saml signin Fix rubo cop offence Add missing # frozen_string_literal: true
2018-10-10Add test to add a new project memberMark Lapierre
Adds a new QA test and the required page objects and related changes
2018-10-10Merge branch 'ml-qa-add-file-templates' into 'master'Sean McGivern
Add test of adding file templates via Web IDE and Files view See merge request gitlab-org/gitlab-ce!21914
2018-10-09Merge branch 'qa-60-reorganize-menu-classes' into 'master'Rémy Coutable
Reorganize menu files Closes gitlab-org/quality/team-tasks#60 See merge request gitlab-org/gitlab-ce!22115
2018-10-09Add tests of adding file templatesMark Lapierre
Adds tests that adds new files via file templates via the Files view and the Web IDE. Includes changes to page objects and associated code Fetches template content from the API rather than hardcoding strings that will need to be updated if the templates change. Some of the content is stored as flat files but we can't use them because they're not included in the docker images gitlab-qa uses.
2018-10-09Merge branch 'qa-304-auto-devops-open-live-environment' into 'master'Rémy Coutable
Assert prod environment is live after Auto Devops See merge request gitlab-org/gitlab-ce!22131
2018-10-09Reorganize menu filessliaquat
Add missed files Use correct method Implement review feedback Add missing frozen_string_literal Squash 5 commits
2018-10-07Assert prod environment is live after Auto DevopsThong Kuah
Goes to Operations > Environments and clicks on the "View deployment" link for production.
2018-10-05Adding qa-selectors for e2e testsRamya Authappan
2018-10-02[QA] Improve admin hashed-storage settingsRémy Coutable
This was introduced by https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/7371 for which no QA was run, even though QA files were changed. This is a follow-up to https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/7531. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-18Merge branch 'ml-qa-spec-use-ssh-key' into 'master'Robert Speicher
Add a new scenario to add an SSH key, perform Git actions with it, and then remove the key See merge request gitlab-org/gitlab-ce!19754
2018-09-15Add an SSH key and use it to clone and pushMark Lapierre
Adds 2 end-to-end tests: 1. Add and remove an SSH key 2. Add an SSH key and use it to clone and push Includes changes to factories to allow Git actions via SSH
2018-09-06[QA] Change Test::Sanity::Failing to Test::Sanity::FrameworkRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-05[QA] Ensure groups filtering does not happen before the groups list is loadedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-04Merge branch 'qa-28' into 'master'Grzegorz Bizon
[QA] Add a new Test::Sanity::Failing scenario that always fails Closes gitlab-qa#28 See merge request gitlab-org/gitlab-ce!21477
2018-09-03[QA] Move Page::Shared::ClonePanel to Page::Component::ClonePanelRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-03[QA] Add a new Test::Sanity::Failing scenario that always failsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-08-29Merge branch 'master' into sh-add-object-storage-qaStan Hu