2016-02-14 15:06:24 -05:00
|
|
|
class Spinach::Features::ProjectPages < Spinach::FeatureSteps
|
|
|
|
include SharedAuthentication
|
|
|
|
include SharedPaths
|
|
|
|
include SharedProject
|
|
|
|
|
|
|
|
step 'pages are enabled' do
|
2016-02-16 04:48:51 -05:00
|
|
|
allow(Gitlab.config.pages).to receive(:enabled).and_return(true)
|
|
|
|
allow(Gitlab.config.pages).to receive(:host).and_return('example.com')
|
|
|
|
allow(Gitlab.config.pages).to receive(:port).and_return(80)
|
|
|
|
allow(Gitlab.config.pages).to receive(:https).and_return(false)
|
2016-02-14 15:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'pages are disabled' do
|
2016-02-16 04:48:51 -05:00
|
|
|
allow(Gitlab.config.pages).to receive(:enabled).and_return(false)
|
2016-02-14 15:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'I visit the Project Pages' do
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_pages_path(@project)
|
2016-02-14 15:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see the usage of GitLab Pages' do
|
|
|
|
expect(page).to have_content('Configure pages')
|
|
|
|
end
|
|
|
|
|
2017-04-06 23:27:35 -04:00
|
|
|
step 'I should see the "Pages" tab' do
|
2017-08-30 07:36:04 -04:00
|
|
|
page.within '.nav-sidebar' do
|
2017-04-06 23:27:35 -04:00
|
|
|
expect(page).to have_link('Pages')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should not see the "Pages" tab' do
|
2017-08-30 07:36:04 -04:00
|
|
|
page.within '.nav-sidebar' do
|
2017-04-06 23:27:35 -04:00
|
|
|
expect(page).not_to have_link('Pages')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-14 15:06:24 -05:00
|
|
|
step 'pages are deployed' do
|
2017-08-23 08:20:48 -04:00
|
|
|
pipeline = @project.pipelines.create(ref: 'HEAD',
|
|
|
|
sha: @project.commit('HEAD').sha,
|
2017-09-01 04:54:07 -04:00
|
|
|
source: :push,
|
|
|
|
protected: false)
|
2017-08-23 08:20:48 -04:00
|
|
|
|
2016-02-14 15:06:24 -05:00
|
|
|
build = build(:ci_build,
|
2016-06-07 10:40:15 -04:00
|
|
|
project: @project,
|
|
|
|
pipeline: pipeline,
|
|
|
|
ref: 'HEAD',
|
2017-11-23 10:57:27 -05:00
|
|
|
legacy_artifacts_file: fixture_file_upload(Rails.root + 'spec/fixtures/pages.zip'),
|
|
|
|
legacy_artifacts_metadata: fixture_file_upload(Rails.root + 'spec/fixtures/pages.zip.meta')
|
2016-02-17 04:05:26 -05:00
|
|
|
)
|
2017-08-23 08:20:48 -04:00
|
|
|
|
2016-02-14 15:06:24 -05:00
|
|
|
result = ::Projects::UpdatePagesService.new(@project, build).execute
|
|
|
|
expect(result[:status]).to eq(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should be able to access the Pages' do
|
|
|
|
expect(page).to have_content('Access pages')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see that support for domains is disabled' do
|
|
|
|
expect(page).to have_content('Support for domains and certificates is disabled')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'support for external domains is disabled' do
|
2016-02-16 04:48:51 -05:00
|
|
|
allow(Gitlab.config.pages).to receive(:external_http).and_return(nil)
|
|
|
|
allow(Gitlab.config.pages).to receive(:external_https).and_return(nil)
|
2016-02-14 15:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'pages are exposed on external HTTP address' do
|
2017-03-08 11:45:59 -05:00
|
|
|
allow(Gitlab.config.pages).to receive(:external_http).and_return(['1.1.1.1:80'])
|
2016-02-16 04:48:51 -05:00
|
|
|
allow(Gitlab.config.pages).to receive(:external_https).and_return(nil)
|
2016-02-14 15:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'pages are exposed on external HTTPS address' do
|
2017-03-08 11:45:59 -05:00
|
|
|
allow(Gitlab.config.pages).to receive(:external_http).and_return(['1.1.1.1:80'])
|
|
|
|
allow(Gitlab.config.pages).to receive(:external_https).and_return(['1.1.1.1:443'])
|
2016-02-14 15:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should be able to add a New Domain' do
|
|
|
|
expect(page).to have_content('New Domain')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I visit add a new Pages Domain' do
|
2017-06-29 13:06:35 -04:00
|
|
|
visit new_project_pages_domain_path(@project)
|
2016-02-14 15:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'I fill the domain' do
|
|
|
|
fill_in 'Domain', with: 'my.test.domain.com'
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I click on "Create New Domain"' do
|
|
|
|
click_button 'Create New Domain'
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see a new domain added' do
|
|
|
|
expect(page).to have_content('Domains (1)')
|
|
|
|
expect(page).to have_content('my.test.domain.com')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'pages domain is added' do
|
|
|
|
@project.pages_domains.create!(domain: 'my.test.domain.com')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see error message that domain already exists' do
|
|
|
|
expect(page).to have_content('Domain has already been taken')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see that support for certificates is disabled' do
|
|
|
|
expect(page).to have_content('Support for custom certificates is disabled')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I fill the certificate and key' do
|
|
|
|
fill_in 'Certificate (PEM)', with: '-----BEGIN CERTIFICATE-----
|
|
|
|
MIICGzCCAYSgAwIBAgIBATANBgkqhkiG9w0BAQUFADAbMRkwFwYDVQQDExB0ZXN0
|
|
|
|
LWNlcnRpZmljYXRlMB4XDTE2MDIxMjE0MzIwMFoXDTIwMDQxMjE0MzIwMFowGzEZ
|
|
|
|
MBcGA1UEAxMQdGVzdC1jZXJ0aWZpY2F0ZTCBnzANBgkqhkiG9w0BAQEFAAOBjQAw
|
|
|
|
gYkCgYEApL4J9L0ZxFJ1hI1LPIflAlAGvm6ZEvoT4qKU5Xf2JgU7/2geNR1qlNFa
|
|
|
|
SvCc08Knupp5yTgmvyK/Xi09U0N82vvp4Zvr/diSc4A/RA6Mta6egLySNT438kdT
|
|
|
|
nY2tR5feoTLwQpX0t4IMlwGQGT5h6Of2fKmDxzuwuyffcIHqLdsCAwEAAaNvMG0w
|
|
|
|
DAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUxl9WSxBprB0z0ibJs3rXEk0+95AwCwYD
|
|
|
|
VR0PBAQDAgXgMBEGCWCGSAGG+EIBAQQEAwIGQDAeBglghkgBhvhCAQ0EERYPeGNh
|
|
|
|
IGNlcnRpZmljYXRlMA0GCSqGSIb3DQEBBQUAA4GBAGC4T8SlFHK0yPSa+idGLQFQ
|
|
|
|
joZp2JHYvNlTPkRJ/J4TcXxBTJmArcQgTIuNoBtC+0A/SwdK4MfTCUY4vNWNdese
|
|
|
|
5A4K65Nb7Oh1AdQieTBHNXXCdyFsva9/ScfQGEl7p55a52jOPs0StPd7g64uvjlg
|
|
|
|
YHi2yesCrOvVXt+lgPTd
|
|
|
|
-----END CERTIFICATE-----'
|
|
|
|
|
|
|
|
fill_in 'Key (PEM)', with: '-----BEGIN PRIVATE KEY-----
|
|
|
|
MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBAKS+CfS9GcRSdYSN
|
|
|
|
SzyH5QJQBr5umRL6E+KilOV39iYFO/9oHjUdapTRWkrwnNPCp7qaeck4Jr8iv14t
|
|
|
|
PVNDfNr76eGb6/3YknOAP0QOjLWunoC8kjU+N/JHU52NrUeX3qEy8EKV9LeCDJcB
|
|
|
|
kBk+Yejn9nypg8c7sLsn33CB6i3bAgMBAAECgYA2D26w80T7WZvazYr86BNMePpd
|
|
|
|
j2mIAqx32KZHzt/lhh40J/SRtX9+Kl0Y7nBoRR5Ja9u/HkAIxNxLiUjwg9r6cpg/
|
|
|
|
uITEF5nMt7lAk391BuI+7VOZZGbJDsq2ulPd6lO+C8Kq/PI/e4kXcIjeH6KwQsuR
|
|
|
|
5vrXfBZ3sQfflaiN4QJBANBt8JY2LIGQF8o89qwUpRL5vbnKQ4IzZ5+TOl4RLR7O
|
|
|
|
AQpJ81tGuINghO7aunctb6rrcKJrxmEH1whzComybrMCQQDKV49nOBudRBAIgG4K
|
|
|
|
EnLzsRKISUHMZSJiYTYnablof8cKw1JaQduw7zgrUlLwnroSaAGX88+Jw1f5n2Lh
|
|
|
|
Vlg5AkBDdUGnrDLtYBCDEQYZHblrkc7ZAeCllDOWjxUV+uMqlCv8A4Ey6omvY57C
|
|
|
|
m6I8DkWVAQx8VPtozhvHjUw80rZHAkB55HWHAM3h13axKG0htCt7klhPsZHpx6MH
|
|
|
|
EPjGlXIT+aW2XiPmK3ZlCDcWIenE+lmtbOpI159Wpk8BGXs/s/xBAkEAlAY3ymgx
|
|
|
|
63BDJEwvOb2IaP8lDDxNsXx9XJNVvQbv5n15vNsLHbjslHfAhAbxnLQ1fLhUPqSi
|
|
|
|
nNp/xedE1YxutQ==
|
|
|
|
-----END PRIVATE KEY-----'
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I click Remove Pages' do
|
|
|
|
click_link 'Remove pages'
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'The Pages should get removed' do
|
2016-02-19 16:17:15 -05:00
|
|
|
expect(@project.pages_deployed?).to be_falsey
|
2016-02-14 15:06:24 -05:00
|
|
|
end
|
|
|
|
end
|