UNPKG

@kui-shell/plugin-kubectl

Version:

Kubernetes visualization plugin for kubernetes

102 lines 4.82 kB
/* * Copyright 2019 The Kubernetes 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. */ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import { Common, CLI, ReplExpect, Selectors, SidecarExpect, Util } from '@kui-shell/test'; import { waitForGreen, openSidecarByList, createNS, allocateNS, deleteNS, waitTillNone } from '@kui-shell/plugin-kubectl/tests/lib/k8s/utils'; const synonyms = ['kubectl']; describe(`kubectl configmap ${process.env.MOCHA_RUN_TARGET || ''}`, function () { before(Common.before(this)); after(Common.after(this)); synonyms.forEach(kubectl => { const ns = createNS(); const inNamespace = `-n ${ns}`; /** return the editor text */ const getText = (res) => { return Util.getValueFromMonaco(res); }; /** wait until the sidecar displays a superset of the given content */ const expectContent = (res, content) => { return this.app.client.waitUntil(() => __awaiter(this, void 0, void 0, function* () { const ok = yield getText(res).then(Util.expectYAMLSubset(content, false)); return ok; }), { timeout: CLI.waitTimeout }); }; /** * List configmaps, click on the given named configmap, and * optionally expect the given content to appear in the sidecar * */ const _listAndClick = (name, content) => { it(`should list configmaps via ${kubectl} then click on ${name}`, () => __awaiter(this, void 0, void 0, function* () { try { const res = yield openSidecarByList(this, `${kubectl} get cm ${inNamespace}`, name, false // Note: configmaps don't really have a status, so there is nothing to wait for on "get" ); if (content) { if (content.data) { yield SidecarExpect.yaml(content.data)(res); } yield Util.switchToTab('raw')(res); yield expectContent(res, content); } } catch (err) { return Common.oops(this, true)(err); } })); }; /** delete the given configmap */ const deleteIt = (name) => { it(`should delete the configmap ${name} via ${kubectl} `, () => { return CLI.command(`${kubectl} delete cm ${name} ${inNamespace}`, this.app) .then(() => waitTillNone('configmap', undefined, name, undefined, inNamespace)) .catch(Common.oops(this, true)); }); }; /** create the given configmap with optional literal parameters */ const createIt = (name, literals = '') => { it(`should create a configmap ${name} via ${kubectl}`, () => { return CLI.command(`${kubectl} create configmap ${name} ${literals} ${inNamespace}`, this.app) .then(ReplExpect.okWithCustom({ selector: Selectors.BY_NAME(name) })) .then(selector => waitForGreen(this.app, selector)) .catch(Common.oops(this, true)); }); }; // // now start the tests // allocateNS(this, ns); createIt('yoyo'); createIt('momo', '--from-literal hello=world'); _listAndClick('yoyo'); _listAndClick('momo', { data: { hello: 'world' } }); deleteIt('yoyo'); deleteIt('momo'); deleteNS(this, ns); }); }); //# sourceMappingURL=config-map.js.map