summaryrefslogtreecommitdiff
path: root/qa/qa/factory/resource/deploy_token.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/factory/resource/deploy_token.rb')
-rw-r--r--qa/qa/factory/resource/deploy_token.rb48
1 files changed, 0 insertions, 48 deletions
diff --git a/qa/qa/factory/resource/deploy_token.rb b/qa/qa/factory/resource/deploy_token.rb
deleted file mode 100644
index 159f79ac50b..00000000000
--- a/qa/qa/factory/resource/deploy_token.rb
+++ /dev/null
@@ -1,48 +0,0 @@
-module QA
- module Factory
- module Resource
- class DeployToken < Factory::Base
- attr_accessor :name, :expires_at
-
- product :username do |resource|
- Page::Project::Settings::Repository.act do
- expand_deploy_tokens do |token|
- token.token_username
- end
- end
- end
-
- product :password do |password|
- Page::Project::Settings::Repository.act do
- expand_deploy_tokens do |token|
- token.token_password
- end
- end
- end
-
- dependency Factory::Resource::Project, as: :project do |project|
- project.name = 'project-to-deploy'
- project.description = 'project for adding deploy token test'
- end
-
- def fabricate!
- project.visit!
-
- Page::Project::Menu.act do
- click_repository_settings
- end
-
- Page::Project::Settings::Repository.perform do |setting|
- setting.expand_deploy_tokens do |page|
- page.fill_token_name(name)
- page.fill_token_expires_at(expires_at)
- page.fill_scopes(read_repository: true, read_registry: false)
-
- page.add_token
- end
- end
- end
- end
- end
- end
-end