1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- * 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('R Editor tests', () => {
- before(() => {
- cy.resetJupyterLab();
- cy.bootstrapFile('helloworld.r'); // load R file used to check existing contents
- });
- after(() => {
- // delete files created for testing
- cy.deleteFile('untitled*.r');
- cy.deleteFile('helloworld.r'); // delete R file used for testing
- });
- // R Editor 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', () => {
- cy.checkRightClickTabContent('R');
- });
- it('close R editor', () => {
- cy.closeTab(-1);
- });
- it('open R file with expected content', () => {
- cy.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"]'
- );
- // 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', () => {
- cy.checkScriptEditorToolbarContent();
- });
- });
|