|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +require('jasmine-beforeall'); |
| 4 | + |
| 5 | +const h = require('../helpers'); |
| 6 | +const addExtension = require('../helpers/extensions').addExtension; |
| 7 | +const resetExtensions = require('../helpers/extensions').resetExtensions; |
| 8 | +const matchersHelpers = require('../helpers/matchers'); |
| 9 | +const projectHelpers = require('../helpers/project'); |
| 10 | +const inputsHelpers = require('../helpers/inputs'); |
| 11 | +const CreateFromURLPage = require('../page-objects/createFromURL').CreateFromURLPage; |
| 12 | +const CreateProjectPage = require('../page-objects/createProject').CreateProjectPage; |
| 13 | +const CatalogPage = require('../page-objects/catalog').CatalogPage; |
| 14 | +const nodeMongoTemplate = require('../fixtures/nodejs-mongodb'); |
| 15 | +const centosImageStream = require('../fixtures/image-streams-centos7.json'); |
| 16 | + |
| 17 | +describe('authenticated e2e-user', function() { |
| 18 | + |
| 19 | + let project = projectHelpers.projectDetails(); |
| 20 | + let namespaceForFixtures = "template-dumpster"; |
| 21 | + |
| 22 | + let setupEnv = function() { |
| 23 | + // add namespace to create whitelist for template and image stream |
| 24 | + addExtension(` |
| 25 | + (function() { |
| 26 | + // Update whilelist: |
| 27 | + window.OPENSHIFT_CONSTANTS.CREATE_FROM_URL_WHITELIST = ['openshift', '${namespaceForFixtures}']; |
| 28 | + })(); |
| 29 | + `); |
| 30 | + let fixturesProject = {name: namespaceForFixtures}; |
| 31 | + let createProjectPage = new CreateProjectPage(fixturesProject); |
| 32 | + createProjectPage.visit(); |
| 33 | + createProjectPage.createProject(); |
| 34 | + let catalogPage = new CatalogPage(fixturesProject); |
| 35 | + // - add an image stream to that namespace |
| 36 | + catalogPage.visit(); |
| 37 | + catalogPage.processImageStream(JSON.stringify(centosImageStream)); |
| 38 | + // - add a template to that namespace |
| 39 | + catalogPage.visit(); |
| 40 | + catalogPage.saveTemplate(JSON.stringify(nodeMongoTemplate)); |
| 41 | + }; |
| 42 | + |
| 43 | + beforeAll(function() { |
| 44 | + h.commonSetup(); |
| 45 | + h.login(); |
| 46 | + projectHelpers.deleteAllProjects(); |
| 47 | + setupEnv(); |
| 48 | + }); |
| 49 | + |
| 50 | + afterAll(function() { |
| 51 | + projectHelpers.deleteAllProjects(); |
| 52 | + resetExtensions(); |
| 53 | + h.afterAllTeardown(); |
| 54 | + }); |
| 55 | + |
| 56 | + describe('create from URL', function() { |
| 57 | + |
| 58 | + describe('using an image stream and image stream tag supplied as query string params', function() { |
| 59 | + |
| 60 | + let name = 'nodejs-edited'; |
| 61 | + let sourceURI = 'https://github.com/openshift/nodejs-ex.git-edited'; |
| 62 | + let sourceRef = 'master-edited'; |
| 63 | + let contextDir = '/-edited'; |
| 64 | + let qs = `?imageStream=nodejs&imageTag=4&name=${name}&sourceURI=${sourceURI}&sourceRef=${sourceRef}&contextDir=${contextDir}&namespace=${namespaceForFixtures}`; |
| 65 | + let uri = `project/${project.name}create/fromimage${qs}`; |
| 66 | + let heading = 'Node.js 4'; |
| 67 | + let words = project.name.split(' '); |
| 68 | + let timestamp = words[words.length - 1]; |
| 69 | + |
| 70 | + it('should display details about the the image', function() { |
| 71 | + let createFromURLPage = new CreateFromURLPage(); |
| 72 | + createFromURLPage.visit(qs); |
| 73 | + matchersHelpers.expectHeading(heading); |
| 74 | + }); |
| 75 | + |
| 76 | + it('should load the image stream in to a newly created project', function(){ |
| 77 | + let createFromURLPage = new CreateFromURLPage(); |
| 78 | + createFromURLPage.visit(qs); |
| 79 | + createFromURLPage.clickCreateNewProjectTab(); |
| 80 | + projectHelpers.createProject(project, 'project/' + project['name'] + 'create/fromimage' + qs); |
| 81 | + matchersHelpers.expectHeading(heading); |
| 82 | + projectHelpers.deleteProject(project); |
| 83 | + }); |
| 84 | + |
| 85 | + it('should load the image stream in to an existing project and verify the query string params are loaded in to the corresponding form fields', function(){ |
| 86 | + let createFromURLPage = new CreateFromURLPage(); |
| 87 | + projectHelpers.visitCreatePage(); |
| 88 | + projectHelpers.createProject(project); |
| 89 | + createFromURLPage.visit(qs); |
| 90 | + createFromURLPage.selectExistingProject(timestamp, uri); |
| 91 | + matchersHelpers.expectHeading(heading); |
| 92 | + let nameInput = element(by.model('name')); |
| 93 | + expect(nameInput.getAttribute('value')).toEqual(name); |
| 94 | + let sourceURIInput = element(by.model('buildConfig.sourceUrl')); |
| 95 | + expect(sourceURIInput.getAttribute('value')).toEqual(sourceURI); |
| 96 | + createFromURLPage.clickShowAdvanced(); |
| 97 | + let sourceRefInput = element(by.model('buildConfig.gitRef')); |
| 98 | + expect(sourceRefInput.getAttribute('value')).toEqual(sourceRef); |
| 99 | + let contextDirInput = element(by.model('buildConfig.contextDir')); |
| 100 | + expect(contextDirInput.getAttribute('value')).toEqual(contextDir); |
| 101 | + projectHelpers.deleteProject(project); |
| 102 | + }); |
| 103 | + |
| 104 | + }); |
| 105 | + |
| 106 | + describe('using a template supplied as a query string param', function() { |
| 107 | + |
| 108 | + let sourceURL = "https://github.com/openshift/nodejs-ex.git-edited"; |
| 109 | + let qs = '?template=nodejs-mongodb-example&templateParamsMap=%7B"SOURCE_REPOSITORY_URL":"' + sourceURL + '"%7D' + '&namespace=' + namespaceForFixtures; |
| 110 | + let uri = 'project/' + project.name + 'create/fromtemplate' + qs; |
| 111 | + let heading = 'Node.js + MongoDB (Ephemeral)'; |
| 112 | + let words = project.name.split(' '); |
| 113 | + let timestamp = words[words.length - 1]; |
| 114 | + |
| 115 | + it('should display details about the template', function() { |
| 116 | + let createFromURLPage = new CreateFromURLPage(); |
| 117 | + createFromURLPage.visit(qs); |
| 118 | + matchersHelpers.expectHeading(heading); |
| 119 | + }); |
| 120 | + |
| 121 | + it('should load the template in to a newly created project', function() { |
| 122 | + let createFromURLPage = new CreateFromURLPage(); |
| 123 | + createFromURLPage.visit(qs); |
| 124 | + createFromURLPage.clickCreateNewProjectTab(); |
| 125 | + projectHelpers.createProject(project, 'project/' + project['name'] + 'create/fromtemplate' + qs); |
| 126 | + matchersHelpers.expectHeading(heading); |
| 127 | + projectHelpers.deleteProject(project); |
| 128 | + }); |
| 129 | + |
| 130 | + it('should load the template in an existing project and verify the query string param sourceURL is loaded in to a corresponding form field', function(){ |
| 131 | + let createFromURLPage = new CreateFromURLPage(); |
| 132 | + projectHelpers.visitCreatePage(); |
| 133 | + projectHelpers.createProject(project); |
| 134 | + createFromURLPage.visit(qs); |
| 135 | + createFromURLPage.selectExistingProject(timestamp, uri); |
| 136 | + matchersHelpers.expectHeading(heading); |
| 137 | + inputsHelpers |
| 138 | + .findValueInInputs(element.all(by.model('parameter.value')), sourceURL) |
| 139 | + .then(function(found) { |
| 140 | + expect(found).toEqual(sourceURL); |
| 141 | + projectHelpers.deleteProject(project); |
| 142 | + }); |
| 143 | + }); |
| 144 | + |
| 145 | + }); |
| 146 | + |
| 147 | + describe('using a namespace that is not in the whitelist', function() { |
| 148 | + it('should display an error about the namespace', function() { |
| 149 | + let createFromURLPage = new CreateFromURLPage(); |
| 150 | + createFromURLPage.visit('?namespace=not-whitelisted'); |
| 151 | + matchersHelpers.expectAlert('Resources from the namespace "not-whitelisted" are not permitted.'); |
| 152 | + }); |
| 153 | + }); |
| 154 | + |
| 155 | + describe('using an unavailable image stream supplied as a query string param', function() { |
| 156 | + it('should display an error about the image stream', function() { |
| 157 | + let createFromURLPage = new CreateFromURLPage(); |
| 158 | + createFromURLPage.visit('?imageStream=unavailable-imageStream'); |
| 159 | + matchersHelpers.expectAlert('The requested image stream "unavailable-imageStream" could not be loaded.'); |
| 160 | + }); |
| 161 | + }); |
| 162 | + |
| 163 | + describe('using an unavailable image tag supplied as a query string param', function() { |
| 164 | + it('should display an error about the image tag', function() { |
| 165 | + let createFromURLPage = new CreateFromURLPage(); |
| 166 | + createFromURLPage.visit('?imageStream=nodejs&imageTag=unavailable-imageTag' + '&namespace=' + namespaceForFixtures); |
| 167 | + matchersHelpers.expectAlert('The requested image stream tag "unavailable-imageTag" could not be loaded.'); |
| 168 | + }); |
| 169 | + }); |
| 170 | + |
| 171 | + describe('using an unavailable template supplied as a query string param', function() { |
| 172 | + it('should display an error about the template', function() { |
| 173 | + let createFromURLPage = new CreateFromURLPage(); |
| 174 | + createFromURLPage.visit('?template=unavailable-template'); |
| 175 | + matchersHelpers.expectAlert('The requested template "unavailable-template" could not be loaded.'); |
| 176 | + }); |
| 177 | + }); |
| 178 | + |
| 179 | + describe('without using an image stream or a template', function() { |
| 180 | + it('should display an error about needing a resource', function() { |
| 181 | + let createFromURLPage = new CreateFromURLPage(); |
| 182 | + createFromURLPage.visit(''); |
| 183 | + matchersHelpers.expectAlert('An image stream or template is required.'); |
| 184 | + }); |
| 185 | + }); |
| 186 | + describe('using both an image stream and a template', function() { |
| 187 | + it('should display an error about combining resources', function() { |
| 188 | + let createFromURLPage = new CreateFromURLPage(); |
| 189 | + createFromURLPage.visit('?imageStream=nodejs&template=nodejs-mongodb-example' + '&namespace=' + namespaceForFixtures); |
| 190 | + matchersHelpers.expectAlert('Image streams and templates cannot be combined.'); |
| 191 | + }); |
| 192 | + }); |
| 193 | + describe('using an invalid app name as a query string param', function() { |
| 194 | + it('should display an error about the app name', function() { |
| 195 | + let createFromURLPage = new CreateFromURLPage(); |
| 196 | + createFromURLPage.visit('?name=InvalidAppName&imageStream=nodejs' + '&namespace=' + namespaceForFixtures); |
| 197 | + matchersHelpers.expectAlert('The app name "InvalidAppName" is not valid. An app name is an alphanumeric (a-z, and 0-9) string with a maximum length of 24 characters, where the first character is a letter (a-z), and the \'-\' character is allowed anywhere except the first or last character.'); |
| 198 | + }); |
| 199 | + }); |
| 200 | + |
| 201 | + }); |
| 202 | + |
| 203 | +}); |
0 commit comments