@kui-shell/plugin-kubectl
Version:
Kubernetes visualization plugin for kubernetes
87 lines • 4.5 kB
JavaScript
/*
* Copyright 2018 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, SidecarExpect, Selectors, Util } from '@kui-shell/test';
import { openSidecarByList, remotePodYaml, waitForRed, createNS, allocateNS, deleteNS } from '@kui-shell/plugin-kubectl/tests/lib/k8s/utils';
const synonyms = ['kubectl'];
const dashFs = ['-f'];
describe(`kubectl apply pod ${process.env.MOCHA_RUN_TARGET || ''}`, function () {
before(Common.before(this));
after(Common.after(this));
const ns = createNS();
const inNamespace = `-n${ns}`;
// ^^^ intentionally no space between -n and ${ns} to cover #8992
allocateNS(this, ns);
// repeat the tests for kubectl, k, etc. i.e. any built-in
// synonyms/aliases we have for "kubectl"
synonyms.forEach(kubectl => {
dashFs.forEach(dashF => {
let res;
it(`should create sample pod from URL via "${kubectl} apply ${dashF}" for test: ${this.title}`, () => __awaiter(this, void 0, void 0, function* () {
try {
res = yield openSidecarByList(this, `${kubectl} apply ${dashF} ${remotePodYaml} ${inNamespace}`, 'nginx').then(SidecarExpect.descriptionList({ Ready: '1/1' }));
}
catch (err) {
return Common.oops(this, true)(err);
}
}));
it(`should switch to last applied tab for test: ${this.title}`, () => __awaiter(this, void 0, void 0, function* () {
try {
// make sure we have a last applied tab
console.log(`kubectl apply pod 4 ${this.title}`);
yield Util.switchToTab('last applied')(res);
let idx = 0;
console.log(`kubectl apply pod 5 ${this.title}`);
yield this.app.client.waitUntil(() => __awaiter(this, void 0, void 0, function* () {
const text = yield Util.getValueFromMonaco(res);
if (++idx > 5) {
console.error(`still waiting for yaml in ${this.title}`, text);
}
return Promise.resolve(text)
.then(Util.expectYAMLSubset({
apiVersion: 'v1',
kind: 'Pod',
metadata: {
name: 'nginx'
}
}, false))
.catch(() => false);
}));
console.log(`kubectl apply pod 6 ${this.title}`);
}
catch (err) {
return Common.oops(this, true)(err);
}
}));
it(`should delete the sample pod from URL via ${kubectl}`, () => {
return CLI.command(`${kubectl} delete ${dashF} ${remotePodYaml} ${inNamespace}`, this.app)
.then(ReplExpect.okWithCustom({ selector: Selectors.BY_NAME('nginx') }))
.then(selector => waitForRed(this.app, selector))
.catch(Common.oops(this, true));
});
});
});
deleteNS(this, ns);
});
//# sourceMappingURL=apply-pod.js.map