本文整理匯總了TypeScript中core/serverGroup/configure/common/deployInitializer.component.DeployInitializerController類的典型用法代碼示例。如果您正苦於以下問題:TypeScript component.DeployInitializerController類的具體用法?TypeScript component.DeployInitializerController怎麽用?TypeScript component.DeployInitializerController使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了component.DeployInitializerController類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1:
const initialize = () => {
ctrl = $componentController(
'deployInitializer',
{},
{ application, command: { viewState: {} }, cloudProvider: 'aws' },
) as DeployInitializerController;
ctrl.$onInit();
};
示例2: describe
describe('Component: deployInitializer', () => {
let ctrl: DeployInitializerController, $componentController: IComponentControllerService, application: Application;
const initialize = () => {
ctrl = $componentController(
'deployInitializer',
{},
{ application, command: { viewState: {} }, cloudProvider: 'aws' },
) as DeployInitializerController;
ctrl.$onInit();
};
beforeEach(mock.module(DEPLOY_INITIALIZER_COMPONENT));
beforeEach(
mock.inject((_$componentController_: IComponentControllerService) => {
$componentController = _$componentController_;
}),
);
describe('template initialization', () => {
it('creates separate template options for each account and region of a cluster', () => {
application = ApplicationModelBuilder.createApplicationForTests('app', { key: 'serverGroups', lazy: true });
application.getDataSource('serverGroups').data = [
{
name: 'sg1',
cluster: 'cluster1',
account: 'test',
region: 'us-east-1',
cloudProvider: 'aws',
category: 'serverGroup',
},
{
name: 'sg2',
cluster: 'cluster1',
account: 'prod',
region: 'us-east-1',
cloudProvider: 'aws',
category: 'serverGroup',
},
{
name: 'sg2',
cluster: 'cluster1',
account: 'prod',
region: 'us-east-1',
cloudProvider: 'aws',
category: 'serverGroup',
},
];
initialize();
const templates = ctrl.templates;
expect(templates.length).toBe(3);
// first template is always "None"
expect(templates[0].label).toBe('None');
expect(templates[1].cluster).toBe('cluster1');
expect(templates[1].cluster).toBe('cluster1');
expect(templates[2].cluster).toBe('cluster1');
});
});
});