|
| 1 | +/** ******************************************************************* |
| 2 | + * copyright (c) 2024 Red Hat, Inc. |
| 3 | + * |
| 4 | + * This program and the accompanying materials are made |
| 5 | + * available under the terms of the Eclipse Public License 2.0 |
| 6 | + * which is available at https://www.eclipse.org/legal/epl-2.0/ |
| 7 | + * |
| 8 | + * SPDX-License-Identifier: EPL-2.0 |
| 9 | + **********************************************************************/ |
| 10 | +import { BASE_TEST_CONSTANTS } from '../../constants/BASE_TEST_CONSTANTS'; |
| 11 | +import { e2eContainer } from '../../configs/inversify.config'; |
| 12 | +import { CLASSES } from '../../configs/inversify.types'; |
| 13 | +import { DevfilesHelper } from '../../utils/DevfilesHelper'; |
| 14 | +import { ContainerTerminal, KubernetesCommandLineToolsExecutor } from '../../utils/KubernetesCommandLineToolsExecutor'; |
| 15 | +import { DevWorkspaceConfigurationHelper } from '../../utils/DevWorkspaceConfigurationHelper'; |
| 16 | +import { DevfileContext } from '@eclipse-che/che-devworkspace-generator/lib/api/devfile-context'; |
| 17 | +import { ShellString } from 'shelljs'; |
| 18 | +import { expect } from 'chai'; |
| 19 | +import { API_TEST_CONSTANTS } from '../../constants/API_TEST_CONSTANTS'; |
| 20 | +import YAML from 'yaml'; |
| 21 | +import { Logger } from '../../utils/Logger'; |
| 22 | +import crypto from 'crypto'; |
| 23 | + |
| 24 | +suite('Lombok devfile API test', function (): void { |
| 25 | + const devfilesRegistryHelper: DevfilesHelper = e2eContainer.get(CLASSES.DevfilesRegistryHelper); |
| 26 | + const kubernetesCommandLineToolsExecutor: KubernetesCommandLineToolsExecutor = e2eContainer.get( |
| 27 | + CLASSES.KubernetesCommandLineToolsExecutor |
| 28 | + ); |
| 29 | + const devfileID: string = 'java-lombok'; |
| 30 | + const containerTerminal: ContainerTerminal = e2eContainer.get(CLASSES.ContainerTerminal); |
| 31 | + let devWorkspaceConfigurationHelper: DevWorkspaceConfigurationHelper; |
| 32 | + let devfileContext: DevfileContext; |
| 33 | + let devfileContent: string = ''; |
| 34 | + let devfileName: string = ''; |
| 35 | + |
| 36 | + suiteSetup(`Prepare login ${BASE_TEST_CONSTANTS.TEST_ENVIRONMENT}`, function (): void { |
| 37 | + kubernetesCommandLineToolsExecutor.loginToOcp(); |
| 38 | + }); |
| 39 | + |
| 40 | + test(`Create ${devfileID} workspace`, async function (): Promise<void> { |
| 41 | + const randomPref: string = crypto.randomBytes(4).toString('hex'); |
| 42 | + kubernetesCommandLineToolsExecutor.namespace = API_TEST_CONSTANTS.TS_API_TEST_NAMESPACE || 'admin-devspaces'; |
| 43 | + devfileContent = devfilesRegistryHelper.getDevfileContent(devfileID); |
| 44 | + const editorDevfileContent: string = devfilesRegistryHelper.obtainCheDevFileEditorFromCheConfigMap('editors-definitions'); |
| 45 | + devfileName = YAML.parse(devfileContent).metadata.name; |
| 46 | + const uniqueName: string = YAML.parse(devfileContent).metadata.name + randomPref; |
| 47 | + kubernetesCommandLineToolsExecutor.workspaceName = uniqueName; |
| 48 | + |
| 49 | + devWorkspaceConfigurationHelper = new DevWorkspaceConfigurationHelper({ |
| 50 | + editorContent: editorDevfileContent, |
| 51 | + devfileContent: devfileContent |
| 52 | + }); |
| 53 | + devfileContext = await devWorkspaceConfigurationHelper.generateDevfileContext(); |
| 54 | + if (devfileContext.devWorkspace.metadata) { |
| 55 | + devfileContext.devWorkspace.metadata.name = uniqueName; |
| 56 | + } |
| 57 | + const devWorkspaceConfigurationYamlString: string = |
| 58 | + devWorkspaceConfigurationHelper.getDevWorkspaceConfigurationYamlAsString(devfileContext); |
| 59 | + const output: ShellString = kubernetesCommandLineToolsExecutor.applyAndWaitDevWorkspace(devWorkspaceConfigurationYamlString); |
| 60 | + expect(output.stdout).contains('condition met'); |
| 61 | + }); |
| 62 | + |
| 63 | + test('Check build application', function (): void { |
| 64 | + const containerName: string = YAML.parse(devfileContent).commands[0].exec.component; |
| 65 | + |
| 66 | + if (BASE_TEST_CONSTANTS.IS_CLUSTER_DISCONNECTED()) { |
| 67 | + Logger.info('Test cluster is disconnected. Init Java Truststore...'); |
| 68 | + const initJavaTruststoreCommand: string = |
| 69 | + 'cp /home/user/init-java-truststore.sh /tmp && chmod +x /tmp/init-java-truststore.sh && /tmp/init-java-truststore.sh'; |
| 70 | + const output: ShellString = containerTerminal.execInContainerCommand(initJavaTruststoreCommand, containerName); |
| 71 | + expect(output.code).eqls(0); |
| 72 | + } |
| 73 | + |
| 74 | + const workdir: string = YAML.parse(devfileContent).commands[0].exec.workingDir; |
| 75 | + const commandLine: string = YAML.parse(devfileContent).commands[0].exec.commandLine; |
| 76 | + Logger.info(`workdir from exec section of DevWorkspace file: ${workdir}`); |
| 77 | + Logger.info(`commandLine from exec section of DevWorkspace file: ${commandLine}`); |
| 78 | + |
| 79 | + let runCommandInBash: string = commandLine.replaceAll('$', '\\$'); // don't wipe out env. vars like "${PROJECTS_ROOT}" |
| 80 | + if (workdir !== undefined && workdir !== '') { |
| 81 | + runCommandInBash = `cd ${workdir} && ` + runCommandInBash; |
| 82 | + } |
| 83 | + |
| 84 | + const output: ShellString = containerTerminal.execInContainerCommand(runCommandInBash, containerName); |
| 85 | + expect(output.code).eqls(0); |
| 86 | + |
| 87 | + const outputText: string = output.stdout.trim(); |
| 88 | + expect(outputText).contains('BUILD SUCCESS'); |
| 89 | + }); |
| 90 | + |
| 91 | + suiteTeardown('Delete workspace', function (): void { |
| 92 | + kubernetesCommandLineToolsExecutor.deleteDevWorkspace(devfileName); |
| 93 | + }); |
| 94 | +}); |
0 commit comments