pulumi/sdk/nodejs/tests/resource.spec.ts
Horace Lee a92a005d68
Use ESlint instead of TSlint (#7719)
Migrated TSlint configs to ESlint ones using [tslint-to-eslint-config](https://github.com/typescript-eslint/tslint-to-eslint-config) tool, and refined the configs to better match the current coding style.

Changes:
- [member-delimiter-style](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/member-delimiter-style.md#options) that as suggested default for type definition to be  with `semicolon`
- Indentation fixes that is enforced by [eslint-indent](https://eslint.org/docs/rules/indent#options)
- Added dependencies for ESlint with Typescript
- Removed TSlint
2021-08-10 11:31:59 -07:00

76 lines
2.8 KiB
TypeScript

// Copyright 2016-2018, Pulumi Corporation.
//
// 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.
/* eslint-disable */
import * as assert from "assert";
import { Output, concat, interpolate, output } from "../output";
import * as runtime from "../runtime";
import { asyncTest } from "./util";
import { createUrn, ComponentResource, CustomResourceOptions, DependencyProviderResource } from "../resource";
class MyResource extends ComponentResource {
constructor(name: string, opts?: CustomResourceOptions) {
super("my:mod:MyResource", name, {}, opts);
}
}
class MyParentResource extends ComponentResource {
child: MyResource;
constructor(name: string, opts?: CustomResourceOptions) {
super("my:mod:MyParentResource", name, {}, opts);
this.child = new MyResource(`${name}-child`, { parent: this });
}
}
describe("createUrn", () => {
before(() => {
runtime._setTestModeEnabled(true);
runtime._setProject("myproject");
runtime._setStack("mystack");
});
after(() => {
runtime._setTestModeEnabled(false);
runtime._setProject(undefined);
runtime._setStack(undefined);
});
it("handles name and type", asyncTest(async () => {
const urn = await createUrn("n", "t").promise();
assert.strictEqual(urn, "urn:pulumi:mystack::myproject::t::n");
}));
it("handles name and type and parent", asyncTest(async () => {
const res = new MyResource("myres");
const urn = await createUrn("n", "t", res).promise();
assert.strictEqual(urn, "urn:pulumi:mystack::myproject::my:mod:MyResource$t::n");
}));
it("handles name and type and parent with parent", asyncTest(async () => {
const res = new MyParentResource("myres");
const urn = await createUrn("n", "t", res.child).promise();
assert.strictEqual(urn, "urn:pulumi:mystack::myproject::my:mod:MyParentResource$my:mod:MyResource$t::n");
}));
});
describe("DependencyProviderResource", () => {
describe("getPackage", () => {
it("returns the expected package", () => {
const res = new DependencyProviderResource("urn:pulumi:stack::project::pulumi:providers:aws::default_4_13_0");
assert.strictEqual(res.getPackage(), "aws");
});
});
});