Skip to content

Commit

Permalink
Add browser E2E tests for TaskRun YAML editor
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanGreene authored and tekton-robot committed Feb 21, 2023
1 parent 494a4db commit 3bd4c8b
Show file tree
Hide file tree
Showing 5 changed files with 275 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

function preserveIndentation(input) {
return input
.split('\n')
.map(line => `{home}${line}`) // {home} is interpreted by Cypress and returns the cursor to the start of the line
.join('\n');
}

const namespace = 'tekton-dashboard-e2e';
const namespace = 'tekton-dashboard-e2e-pipelinerun-create';
describe('Create PipelineRun', () => {
before(() => {
cy.exec('kubectl version --client');
Expand All @@ -29,7 +22,7 @@ describe('Create PipelineRun', () => {
cy.exec(`kubectl delete namespace ${namespace} || true`);
});

it('should create pipelinerun', function () {
it('should create PipelineRun', function () {
const uniqueNumber = Date.now();

const pipelineName = `simple-pipeline-${uniqueNumber}`;
Expand Down Expand Up @@ -127,7 +120,7 @@ spec:
.should('have.text', 'Succeeded');
});

it('should create pipelinerun yaml mode', function () {
it('should create PipelineRun in YAML mode', function () {
const uniqueNumber = Date.now();

const pipelineRunName = `yaml-mode-${uniqueNumber}`;
Expand All @@ -154,7 +147,7 @@ spec:
cy.url().should('include', 'mode=yaml');

cy.get('.cm-content').clear();
cy.get('.cm-content').type(preserveIndentation(pipelineRun));
cy.get('.cm-content').type(pipelineRun, { preserveIndentation: true });

cy.contains('button', 'Create').click();

Expand All @@ -166,7 +159,7 @@ spec:
.should('have.text', 'Succeeded');
});

it('should create pipelinerun yaml mode when open yaml mode directly', function () {
it('should create PipelineRun when open YAML mode directly', function () {
const uniqueNumber = Date.now();

const pipelineRunName = `yaml-mode-${uniqueNumber}`;
Expand All @@ -190,7 +183,7 @@ spec:
cy.visit(`/#/pipelineruns/create?mode=yaml`);

cy.get('.cm-content').clear();
cy.get('.cm-content').type(preserveIndentation(pipelineRun));
cy.get('.cm-content').type(pipelineRun, { preserveIndentation: true });

cy.contains('button', 'Create').click();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

const namespace = 'tkn-dashboard-e2e-actions';
describe('Edit and run Pipeline Run', () => {
const namespace = 'tkn-dashboard-e2e-pipelinerun-edit';
describe('Edit and run PipelineRun', () => {
before(() => {
cy.exec('kubectl version --client');
cy.exec(`kubectl create namespace ${namespace} || true`);
Expand All @@ -22,7 +22,7 @@ describe('Edit and run Pipeline Run', () => {
cy.exec(`kubectl delete namespace ${namespace} || true`);
});

it('should create pipelinerun on edit and run', function () {
it('should create PipelineRun on edit and run', function () {
const uniqueNumber = Date.now();
const pipelineName = `sp-${uniqueNumber}`;
const pipeline = `apiVersion: tekton.dev/v1beta1
Expand Down
181 changes: 181 additions & 0 deletions packages/e2e/cypress/e2e/run/taskrun-create.cy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
/*
Copyright 2023 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

const namespace = 'tekton-dashboard-e2e-taskrun-create';
describe('Create TaskRun', () => {
before(() => {
cy.exec('kubectl version --client');
cy.exec(`kubectl create namespace ${namespace} || true`);
});

after(() => {
cy.exec(`kubectl delete namespace ${namespace} || true`);
});

it('should create TaskRun', function () {
const uniqueNumber = Date.now();

const taskName = `simple-task-${uniqueNumber}`;
const task = `apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: ${taskName}
namespace: ${namespace}
spec:
steps:
- name: echo
image: busybox
script: |
#!/bin/ash
echo "Hello World!"
`;
cy.exec(`echo "${task}" | kubectl apply -f -`);
cy.visit(`/#/taskruns/create?namespace=${namespace}&taskName=${taskName}`);
cy.get('[id=create-taskrun--namespaces-dropdown]').should(
'have.value',
namespace
);
cy.get('[id=create-taskrun--tasks-dropdown]').should(
'have.value',
taskName
);

cy.contains('button', 'Create').click();

cy.contains('h1', 'TaskRuns');
cy.contains('a', `${taskName}-run`).click();

cy.get('header[class="tkn--pipeline-run-header"]')
.find('span[class="tkn--status-label"]', { timeout: 15000 })
.should('have.text', 'Succeeded');
});

it('should populate YAML editor based on form inputs', function () {
const uniqueNumber = Date.now();

const taskName = `simple-task-${uniqueNumber}`;
const taskRunName = `run-${uniqueNumber}`;
const task = `apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: ${taskName}
namespace: ${namespace}
spec:
steps:
- name: echo
image: busybox
script: |
#!/bin/ash
echo "Hello World!"
`;
cy.exec(`echo "${task}" | kubectl apply -f -`);
cy.visit(`/#/taskruns/create?namespace=${namespace}&taskName=${taskName}`);
cy.get('[id=create-taskrun--namespaces-dropdown]').should(
'have.value',
namespace
);
cy.get('[id=create-taskrun--tasks-dropdown]').should(
'have.value',
taskName
);

cy.get('#create-taskrun--taskrunname').type(taskRunName);

cy.get('#create-taskrun--timeout').type('10m');

cy.contains('button', 'YAML Mode').click();
cy.url().should('include', 'mode=yaml');

cy.contains('.cm-content', `name: ${taskRunName}`);
cy.contains('.cm-content', `name: ${taskName}`);
cy.contains('.cm-content', 'timeout: 10m');

cy.contains('button', 'Create').click();

cy.contains('h1', 'TaskRuns');
cy.contains('a', taskRunName).click();

cy.get('header[class="tkn--pipeline-run-header"]')
.find('span[class="tkn--status-label"]', { timeout: 15000 })
.should('have.text', 'Succeeded');
});

it('should create TaskRun in YAML mode', function () {
const uniqueNumber = Date.now();

const taskRunName = `yaml-mode-${uniqueNumber}`;
const taskRun = `apiVersion: tekton.dev/v1beta1
kind: TaskRun
metadata:
name: ${taskRunName}
namespace: ${namespace}
spec:
taskSpec:
steps:
- name: echo
image: busybox
script: |
#!/bin/ash
echo "Hello World!"
`;
cy.visit(`/#/taskruns/create`);

cy.contains('button', 'YAML Mode').click();
cy.url().should('include', 'mode=yaml');

cy.get('.cm-content').clear();
cy.get('.cm-content').type(taskRun, { preserveIndentation: true });

cy.contains('button', 'Create').click();

cy.contains('h1', 'TaskRuns');
cy.get(`[title=${taskRunName}]`).click();

cy.get('header[class="tkn--pipeline-run-header"]')
.find('span[class="tkn--status-label"]', { timeout: 15000 })
.should('have.text', 'Succeeded');
});

it('should create TaskRun when open YAML mode directly', function () {
const uniqueNumber = Date.now();

const taskRunName = `yaml-mode-${uniqueNumber}`;
const taskRun = `apiVersion: tekton.dev/v1beta1
kind: TaskRun
metadata:
name: ${taskRunName}
namespace: ${namespace}
spec:
taskSpec:
steps:
- name: echo
image: busybox
script: |
#!/bin/ash
echo "Hello World!"
`;
cy.visit(`/#/taskruns/create?mode=yaml`);

cy.get('.cm-content').clear();
cy.get('.cm-content').type(taskRun, { preserveIndentation: true });

cy.contains('button', 'Create').click();

cy.contains('h1', 'TaskRuns');
cy.get(`[title=${taskRunName}]`).click();

cy.get('header[class="tkn--pipeline-run-header"]')
.find('span[class="tkn--status-label"]', { timeout: 15000 })
.should('have.text', 'Succeeded');
});
});
72 changes: 72 additions & 0 deletions packages/e2e/cypress/e2e/run/taskrun-edit.cy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/*
Copyright 2023 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

const namespace = 'tkn-dashboard-e2e-taskrun-edit';
describe('Edit and run TaskRun', () => {
before(() => {
cy.exec('kubectl version --client');
cy.exec(`kubectl create namespace ${namespace} || true`);
});

after(() => {
cy.exec(`kubectl delete namespace ${namespace} || true`);
});

it('should create TaskRun on edit and run', function () {
const uniqueNumber = Date.now();
const taskName = `sp-${uniqueNumber}`;
const task = `apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: ${taskName}
namespace: ${namespace}
spec:
steps:
- name: echo
image: busybox
script: |
#!/bin/ash
echo "Hello World!"
`;
cy.exec(`echo "${task}" | kubectl apply -f -`);
cy.visit(`/#/taskruns/create?namespace=${namespace}&taskName=${taskName}`);
cy.get('[id=create-taskrun--namespaces-dropdown]').should(
'have.value',
namespace
);
cy.get('[id=create-taskrun--tasks-dropdown]').should(
'have.value',
taskName
);
cy.contains('button', 'Create').click();

cy.contains('h1', 'TaskRuns');

cy.get(
`td:has(.bx--link[title*=${taskName}-run]) + td:has(.tkn--status[data-reason=Succeeded])`,
{ timeout: 15000 }
).should('have.length', 1);

cy.contains('a', `${taskName}-run`).click();
cy.contains('button', 'Actions').click();
cy.contains('button', 'Edit and run').click();
cy.get('.cm-content').contains(`name: ${taskName}`);
cy.contains('button', 'Create').click();
cy.contains('h1', 'TaskRuns');

cy.get(
`td:has(.bx--link[title*=${taskName}-run]) + td:has(.tkn--status[data-reason=Succeeded])`,
{ timeout: 15000 }
).should('have.length', 2);
});
});
14 changes: 13 additions & 1 deletion packages/e2e/cypress/support/commands.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2022 The Tekton Authors
Copyright 2022-2023 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Expand Down Expand Up @@ -36,3 +36,15 @@ limitations under the License.
//
// -- This will overwrite an existing command --
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })

Cypress.Commands.overwrite('type', (originalFn, element, text, options) => {
let textToType = text;
if (options && options.preserveIndentation) {
textToType = text
.split('\n')
.map(line => `{home}${line}`) // {home} is interpreted by Cypress and returns the cursor to the start of the line
.join('\n');
}

return originalFn(element, textToType, options);
});

0 comments on commit 3bd4c8b

Please sign in to comment.