gitlab-org--gitlab-foss/qa
Grzegorz Bizon 0781e956e4 Merge branch 'sh-fix-gitlab-qa-admin' into 'master'
Fix Admin -> License selector for GitLab QA specs

Closes gitlab-qa#68

See merge request gitlab-org/gitlab-ce!14599
2017-09-30 07:37:24 +00:00
..
bin Remove legacy scripts for building docker images 2017-03-09 10:36:27 +01:00
qa Fix Admin -> License selector for GitLab QA specs 2017-09-29 23:20:24 -07:00
spec Use headless chrome instead of webkit via QtWebkit 2017-05-25 09:36:39 +02:00
.gitignore Speed up GitLab QA docker image builds 2017-03-16 14:04:43 +01:00
.rspec
Dockerfile Use latest chrome and chrome driver in GitLab QA 2017-06-27 12:13:05 +02:00
Gemfile Use headless chrome instead of webkit via QtWebkit 2017-05-25 09:36:39 +02:00
Gemfile.lock Use headless chrome instead of webkit via QtWebkit 2017-05-25 09:36:39 +02:00
README.md Add GitLab QA documentation 2017-09-29 23:38:12 -07:00
qa.rb Fix new project selectors in GitLab QA 2017-07-21 12:13:27 +02:00

README.md

Integration tests for GitLab

This directory contains integration tests for GitLab.

It is part of GitLab QA project.

What GitLab QA is?

GitLab QA is an integration tests suite for GitLab.

These are black-box and entirely click-driven integration tests you can run against any existing instance.

How does it work?

  1. When we release a new version of GitLab, we build a Docker images for it.
  2. Along with GitLab Docker Images we also build and publish GitLab QA images.
  3. GitLab QA project uses these images to execute integration tests.

How can I use it?

You can use GitLab QA to exercise tests on any live instance! For example, the follow call would login to the local GitLab instance and run all specs in qa/specs/features:

GITLAB_USERNAME='root' GITLAB_PASSWORD='5iveL!fe' bin/qa Test::Instance http://localhost

You can also supply a specific tests to run as another parameter. For example, to test the EE license specs, you can run:

EE_LICENSE="<YOUR LICENSE KEY>" GITLAB_USERNAME='root' GITLAB_PASSWORD='5iveL!fe' bin/qa Test::Instance http://localhost qa/ee

All supported environment variables are here.