123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- /*
- * Copyright 2018-2022 Elyra 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.
- */
- describe('Script Editor tests', () => {
- before(() => {
- cy.resetJupyterLab();
- cy.bootstrapFile('helloworld.py'); // load python file used to check existing contents
- cy.bootstrapFile('helloworld.r'); // load R file used to check existing contents
- });
- after(() => {
- // delete files created for testing
- cy.deleteFile('untitled*.py');
- cy.deleteFile('untitled*.r');
- cy.deleteFile('helloworld.py'); // delete python file used for testing
- cy.deleteFile('helloworld.r'); // delete R file used for testing
- // Delete runtime configuration used for testing
- cy.exec('elyra-metadata remove runtimes --name=kfp_test_runtime', {
- failOnNonZeroExit: false
- });
- });
- // Python Tests
- it('opens blank Python editor from launcher', () => {
- cy.createNewScriptEditor('Python');
- cy.get('.lm-TabBar-tab[data-type="document-title"]');
- });
- it('check Python editor tab right click content', () => {
- checkRightClickTabContent('Python');
- });
- it('close editor', () => {
- cy.closeTab(-1);
- });
- it('open Python file with expected content', () => {
- openFileAndCheckContent('py');
- });
- it('opens blank Python editor from menu', () => {
- cy.findByRole('menuitem', { name: /file/i }).click();
- cy.findByText(/^new$/i).click();
- cy.get(
- '[data-command="script-editor:create-new-python-editor"] > .lm-Menu-itemLabel'
- ).click();
- });
- it('check toolbar and its content for Python file', () => {
- checkToolbarContent();
- });
- it('check kernel dropdown has Python option', () => {
- cy.get('.elyra-ScriptEditor .jp-Toolbar select > option[value*=python]');
- });
- it('click the Run as Pipeline button should display dialog', () => {
- // Install runtime configuration
- cy.installRuntimeConfig({ type: 'kfp' });
- // Click Run as Pipeline button
- cy.findByText(/run as pipeline/i).click();
- // Check for expected dialog title
- cy.get('.jp-Dialog-header').should('have.text', 'Run file as pipeline');
- // Dismiss dialog
- cy.get('button.jp-mod-reject').click();
- // Close editor tab
- cy.closeTab(-1);
- });
- it('click the Run as Pipeline button on unsaved file should display save dialog', () => {
- // Create new python editor
- cy.createNewScriptEditor('Python');
- // Add some text to the editor
- cy.get('span[role="presentation"]').type('print("test")');
- cy.wait(500);
- dismissAssistant();
- // Click Run as Pipeline button
- cy.findByText(/run as pipeline/i).click();
- // Check expected save and submit dialog message
- cy.contains('.jp-Dialog-header', /this file contains unsaved changes/i);
- // Dismiss save and submit dialog
- cy.get('button.jp-mod-reject').click();
- // Close editor tab
- cy.closeTab(-1);
- // Dismiss save your work dialog by discarding changes
- cy.get('button.jp-mod-warn').click();
- });
- // check for new output console and scroll up/down buttons on output kernel
- it('opens new output console', () => {
- openFile('py');
- cy.get('button[title="Run"]').click();
- cy.get('[id=tab-ScriptEditor-output]').should(
- 'have.text',
- 'Console Output'
- );
- cy.get('button[title="Top"]').should('be.visible');
- cy.get('button[title="Bottom"]').should('be.visible');
- //close console tab
- cy.closeTab(-1);
- // Close editor tab
- cy.closeTab(-1);
- });
- // test to check if output kernel has expected output
- it('checks for valid output', () => {
- openFile('py');
- cy.get('button[title="Run"]').click();
- cy.get('.elyra-ScriptEditor-OutputArea-output').should(
- 'have.text',
- 'Hello Elyra\n'
- );
- //close console tab
- cy.closeTab(-1);
- // Close editor tab
- cy.closeTab(-1);
- });
- // test to check if output kernel has Error message for invalid code
- it('checks for Error message', () => {
- cy.createNewScriptEditor('Python');
- cy.get('span[role="presentation"]').type('print"test"');
- cy.wait(500);
- dismissAssistant();
- cy.get('button[title="Run"]').click();
- cy.findByText(/Error : SyntaxError/i).should('be.visible');
- //close console tab
- cy.closeTab(-1);
- // Close editor tab
- cy.closeTab(-1);
- // Dismiss save your work dialog by discarding changes
- cy.get('button.jp-mod-warn').click();
- });
- // R Tests
- it('opens blank R file from launcher', () => {
- cy.createNewScriptEditor('R');
- cy.get('.lm-TabBar-tab[data-type="document-title"]');
- });
- it('check R editor tab right click content', () => {
- checkRightClickTabContent('R');
- });
- it('close R editor', () => {
- cy.closeTab(-1);
- });
- it('open R file with expected content', () => {
- openFileAndCheckContent('r');
- });
- it('check icons', () => {
- // Check file menu editor contents
- cy.findByRole('menuitem', { name: /file/i }).click();
- cy.findByText(/^new$/i).click();
- cy.get(
- '[data-command="script-editor:create-new-r-editor"] svg[data-icon="elyra:rIcon"]'
- );
- cy.get(
- '[data-command="script-editor:create-new-python-editor"] svg[data-icon="elyra:pyIcon"]'
- );
- // Check python icons from launcher & file explorer
- cy.get(
- '.jp-LauncherCard[data-category="Elyra"][title="Create a new Python Editor"] svg[data-icon="elyra:pyIcon"]'
- ).click();
- cy.get(
- '#filebrowser [title*="Name: untitled1.py"] svg[data-icon="elyra:pyIcon"]'
- );
- cy.closeTab(-1);
- // Check r icons from launcher & file explorer
- cy.get(
- '.jp-LauncherCard[data-category="Elyra"][title="Create a new R Editor"] svg[data-icon="elyra:rIcon"]'
- ).click();
- cy.get(
- '#filebrowser [title*="Name: untitled1.r"] svg[data-icon="elyra:rIcon"]'
- );
- cy.closeTab(-1);
- });
- it('opens blank R file from menu', () => {
- cy.findByRole('menuitem', { name: /file/i }).click();
- cy.findByText(/^new$/i).click();
- cy.get(
- '[data-command="script-editor:create-new-r-editor"] > .lm-Menu-itemLabel'
- ).click();
- });
- it('check toolbar and its content for R file', () => {
- checkToolbarContent();
- });
- });
- // ------------------------------
- // ----- Utility Functions
- // ------------------------------
- const checkToolbarContent = (): void => {
- cy.get('.elyra-ScriptEditor .jp-Toolbar');
- // check save button exists and icon
- cy.get('button[title="Save file contents"]');
- cy.get('svg[data-icon="ui-components:save"]');
- // check run button exists and icon
- cy.get('button[title="Run"]');
- cy.get('svg[data-icon="ui-components:run"]');
- // check stop button exists and icon
- cy.get('button[title="Stop"]');
- cy.get('svg[data-icon="ui-components:stop"]');
- // check select kernel dropdown exists
- cy.get('.elyra-ScriptEditor .jp-Toolbar select');
- // check Run as Pipeline button exists
- cy.contains('Run as Pipeline');
- };
- const checkRightClickTabContent = (fileType: string): void => {
- // Open right-click context menu
- cy.get('.lm-TabBar-tab[data-type="document-title"]').rightclick({
- force: true
- });
- // Check contents of each menu item
- cy.get('[data-command="application:close"] > .lm-Menu-itemLabel').contains(
- 'Close Tab'
- );
- cy.get(
- '[data-command="application:close-other-tabs"] > .lm-Menu-itemLabel'
- ).contains('Close All Other Tabs');
- cy.get(
- '[data-command="application:close-right-tabs"] > .lm-Menu-itemLabel'
- ).contains('Close Tabs to Right');
- cy.get(
- '[data-command="filemenu:create-console"] > .lm-Menu-itemLabel'
- ).contains('Create Console for Editor');
- cy.get('[data-command="docmanager:rename"] > .lm-Menu-itemLabel').contains(
- `Rename ${fileType} File…`
- );
- cy.get('[data-command="docmanager:delete"] > .lm-Menu-itemLabel').contains(
- `Delete ${fileType} File`
- );
- cy.get('[data-command="docmanager:clone"] > .lm-Menu-itemLabel').contains(
- `New View for ${fileType} File`
- );
- cy.get(
- '[data-command="docmanager:show-in-file-browser"] > .lm-Menu-itemLabel'
- ).contains('Show in File Browser');
- cy.get(
- '[data-command="__internal:context-menu-info"] > .lm-Menu-itemLabel'
- ).contains('Shift+Right Click for Browser Menu');
- // Dismiss menu
- cy.get(
- '[data-command="docmanager:show-in-file-browser"] > .lm-Menu-itemLabel'
- ).click();
- };
- //open helloworld.py using file-> open from path
- const openFile = (fileExtension: string): void => {
- cy.findByRole('menuitem', { name: /file/i }).click();
- cy.findByText(/^open from path$/i).click({ force: true });
- // Search for helloworld file and open
- cy.get('input#jp-dialog-input-id').type(`/helloworld.${fileExtension}`);
- cy.get('.p-Panel .jp-mod-accept').click();
- };
- //open file and check contents
- const openFileAndCheckContent = (fileExtension: string): void => {
- openFile(fileExtension);
- // Ensure that the file contents are as expected
- cy.get('span[role="presentation"]').should($span => {
- expect($span.get(0).innerText).to.eq('print("Hello Elyra")');
- });
- // Close the file editor
- cy.closeTab(-1);
- };
- // Dismiss LSP code assistant box if visible
- const dismissAssistant = (): void => {
- cy.get('body').then($body => {
- if ($body.find('.lsp-completer').length > 0) {
- // Dismiss code assistant box
- cy.get('.CodeMirror-lines')
- .first()
- .type('{esc}');
- }
- });
- };
|