mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
247 lines
9.0 KiB
JavaScript
247 lines
9.0 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import {
|
|
create as createPage,
|
|
clickable,
|
|
is,
|
|
attribute,
|
|
collection,
|
|
text,
|
|
isPresent,
|
|
isVisible,
|
|
} from 'ember-cli-page-object';
|
|
|
|
import { alias } from 'ember-cli-page-object/macros';
|
|
import { visitable } from 'consul-ui/tests/lib/page-object/visitable';
|
|
|
|
// utils
|
|
import createDeletable from 'consul-ui/tests/lib/page-object/createDeletable';
|
|
import createSubmitable from 'consul-ui/tests/lib/page-object/createSubmitable';
|
|
import createCreatable from 'consul-ui/tests/lib/page-object/createCreatable';
|
|
import createCancelable from 'consul-ui/tests/lib/page-object/createCancelable';
|
|
|
|
// components
|
|
import intentionPermissionForm from 'consul-ui/components/consul/intention/permission/form/pageobject';
|
|
import intentionPermissionList from 'consul-ui/components/consul/intention/permission/list/pageobject';
|
|
import pageFactory from 'consul-ui/components/hashicorp-consul/pageobject';
|
|
|
|
import radiogroup from 'consul-ui/components/radio-group/pageobject';
|
|
import tabgroup from 'consul-ui/components/tab-nav/pageobject';
|
|
import authFormFactory from 'consul-ui/components/auth-form/pageobject';
|
|
|
|
import emptyStateFactory from 'consul-ui/components/empty-state/pageobject';
|
|
|
|
import policyFormFactory from 'consul-ui/components/policy-form/pageobject';
|
|
import policySelectorFactory from 'consul-ui/components/policy-selector/pageobject';
|
|
import roleFormFactory from 'consul-ui/components/role-form/pageobject';
|
|
import roleSelectorFactory from 'consul-ui/components/role-selector/pageobject';
|
|
|
|
import popoverSelectFactory from 'consul-ui/components/popover-select/pageobject';
|
|
import morePopoverMenuFactory from 'consul-ui/components/more-popover-menu/pageobject';
|
|
|
|
import tokenListFactory from 'consul-ui/components/token-list/pageobject';
|
|
import consulHealthCheckListFactory from 'consul-ui/components/consul/health-check/list/pageobject';
|
|
import consulUpstreamInstanceListFactory from 'consul-ui/components/consul/upstream-instance/list/pageobject';
|
|
import consulTokenListFactory from 'consul-ui/components/consul/token/list/pageobject';
|
|
import consulRoleListFactory from 'consul-ui/components/consul/role/list/pageobject';
|
|
import consulPolicyListFactory from 'consul-ui/components/consul/policy/list/pageobject';
|
|
import consulAuthMethodListFactory from 'consul-ui/components/consul/auth-method/list/pageobject';
|
|
import consulIntentionListFactory from 'consul-ui/components/consul/intention/list/pageobject';
|
|
import consulNspaceListFactory from 'consul-ui/components/consul/nspace/list/pageobject';
|
|
import consulPeerListFactory from 'consul-ui/components/consul/peer/list/test-support';
|
|
import consulKvListFactory from 'consul-ui/components/consul/kv/list/pageobject';
|
|
|
|
// pages
|
|
import index from 'consul-ui/tests/pages/index';
|
|
import dcs from 'consul-ui/tests/pages/dc';
|
|
import settings from 'consul-ui/tests/pages/settings';
|
|
import routingConfig from 'consul-ui/tests/pages/dc/routing-config';
|
|
import services from 'consul-ui/tests/pages/dc/services/index';
|
|
import service from 'consul-ui/tests/pages/dc/services/show';
|
|
import instance from 'consul-ui/tests/pages/dc/services/instance';
|
|
import nodes from 'consul-ui/tests/pages/dc/nodes/index';
|
|
import node from 'consul-ui/tests/pages/dc/nodes/show';
|
|
import kvs from 'consul-ui/tests/pages/dc/kv/index';
|
|
import kv from 'consul-ui/tests/pages/dc/kv/edit';
|
|
import acls from 'consul-ui/tests/pages/dc/acls/index';
|
|
import acl from 'consul-ui/tests/pages/dc/acls/edit';
|
|
import policies from 'consul-ui/tests/pages/dc/acls/policies/index';
|
|
import policy from 'consul-ui/tests/pages/dc/acls/policies/edit';
|
|
import roles from 'consul-ui/tests/pages/dc/acls/roles/index';
|
|
import role from 'consul-ui/tests/pages/dc/acls/roles/edit';
|
|
import tokens from 'consul-ui/tests/pages/dc/acls/tokens/index';
|
|
import token from 'consul-ui/tests/pages/dc/acls/tokens/edit';
|
|
import authMethods from 'consul-ui/tests/pages/dc/acls/auth-methods/index';
|
|
import intentions from 'consul-ui/tests/pages/dc/intentions/index';
|
|
import intention from 'consul-ui/tests/pages/dc/intentions/edit';
|
|
import nspaces from 'consul-ui/tests/pages/dc/nspaces/index';
|
|
import nspace from 'consul-ui/tests/pages/dc/nspaces/edit';
|
|
import peers from 'consul-ui/tests/pages/dc/peers/index';
|
|
import peersShow from 'consul-ui/tests/pages/dc/peers/show';
|
|
|
|
// utils
|
|
const deletable = createDeletable(clickable);
|
|
const submitable = createSubmitable(clickable, is);
|
|
const creatable = createCreatable(clickable, is);
|
|
const cancelable = createCancelable(clickable, is);
|
|
|
|
// components
|
|
const tokenList = tokenListFactory(clickable, attribute, collection, deletable);
|
|
const authForm = authFormFactory(submitable, clickable, attribute);
|
|
const policyForm = policyFormFactory(submitable, cancelable, radiogroup, text);
|
|
const policySelector = policySelectorFactory(clickable, deletable, collection, alias, policyForm);
|
|
const roleForm = roleFormFactory(submitable, cancelable, policySelector);
|
|
const roleSelector = roleSelectorFactory(clickable, deletable, collection, alias, roleForm);
|
|
|
|
const morePopoverMenu = morePopoverMenuFactory(clickable);
|
|
const popoverSelect = popoverSelectFactory(clickable, collection);
|
|
const emptyState = emptyStateFactory(isPresent);
|
|
|
|
const consulHealthCheckList = consulHealthCheckListFactory(collection, text);
|
|
const consulUpstreamInstanceList = consulUpstreamInstanceListFactory(collection, text);
|
|
const consulAuthMethodList = consulAuthMethodListFactory(collection, clickable, text);
|
|
const consulIntentionList = consulIntentionListFactory(
|
|
collection,
|
|
clickable,
|
|
attribute,
|
|
isPresent,
|
|
deletable
|
|
);
|
|
const consulNspaceList = consulNspaceListFactory(
|
|
collection,
|
|
clickable,
|
|
attribute,
|
|
text,
|
|
morePopoverMenu
|
|
);
|
|
const consulPeerList = consulPeerListFactory(collection, isPresent, attribute, morePopoverMenu);
|
|
const consulKvList = consulKvListFactory(collection, clickable, attribute, deletable);
|
|
const consulTokenList = consulTokenListFactory(
|
|
collection,
|
|
clickable,
|
|
attribute,
|
|
text,
|
|
morePopoverMenu
|
|
);
|
|
const consulRoleList = consulRoleListFactory(
|
|
collection,
|
|
clickable,
|
|
attribute,
|
|
text,
|
|
morePopoverMenu
|
|
);
|
|
const consulPolicyList = consulPolicyListFactory(
|
|
collection,
|
|
clickable,
|
|
attribute,
|
|
text,
|
|
morePopoverMenu
|
|
);
|
|
|
|
const page = pageFactory(collection, clickable, attribute, is, authForm, emptyState);
|
|
|
|
// pages
|
|
const create = function (appView) {
|
|
appView = {
|
|
...page(),
|
|
...appView,
|
|
};
|
|
return createPage(appView);
|
|
};
|
|
export default {
|
|
index: create(index(visitable, collection)),
|
|
dcs: create(dcs(visitable, clickable, attribute, collection)),
|
|
services: create(
|
|
services(
|
|
visitable,
|
|
clickable,
|
|
text,
|
|
attribute,
|
|
isPresent,
|
|
collection,
|
|
popoverSelect,
|
|
radiogroup
|
|
)
|
|
),
|
|
service: create(
|
|
service(
|
|
visitable,
|
|
clickable,
|
|
attribute,
|
|
isPresent,
|
|
collection,
|
|
text,
|
|
consulIntentionList,
|
|
tabgroup
|
|
)
|
|
),
|
|
instance: create(
|
|
instance(
|
|
visitable,
|
|
alias,
|
|
attribute,
|
|
isPresent,
|
|
collection,
|
|
text,
|
|
tabgroup,
|
|
consulUpstreamInstanceList,
|
|
consulHealthCheckList
|
|
)
|
|
),
|
|
nodes: create(nodes(visitable, text, clickable, attribute, collection, popoverSelect)),
|
|
node: create(
|
|
node(
|
|
visitable,
|
|
deletable,
|
|
clickable,
|
|
alias,
|
|
attribute,
|
|
isPresent,
|
|
collection,
|
|
tabgroup,
|
|
text,
|
|
consulHealthCheckList
|
|
)
|
|
),
|
|
kvs: create(kvs(visitable, creatable, consulKvList)),
|
|
kv: create(kv(visitable, attribute, isPresent, submitable, deletable, cancelable, clickable)),
|
|
acls: create(acls(visitable, deletable, creatable, clickable, attribute, collection)),
|
|
acl: create(acl(visitable, submitable, deletable, cancelable, clickable)),
|
|
policies: create(policies(visitable, creatable, consulPolicyList, popoverSelect)),
|
|
policy: create(policy(visitable, submitable, deletable, cancelable, clickable, tokenList)),
|
|
roles: create(roles(visitable, creatable, consulRoleList, popoverSelect)),
|
|
// TODO: This needs a policyList
|
|
role: create(role(visitable, submitable, deletable, cancelable, policySelector, tokenList)),
|
|
tokens: create(tokens(visitable, creatable, text, consulTokenList, popoverSelect)),
|
|
token: create(
|
|
token(visitable, submitable, deletable, cancelable, clickable, policySelector, roleSelector)
|
|
),
|
|
authMethods: create(authMethods(visitable, creatable, consulAuthMethodList, popoverSelect)),
|
|
intentions: create(
|
|
intentions(visitable, creatable, clickable, consulIntentionList, popoverSelect)
|
|
),
|
|
intention: create(
|
|
intention(
|
|
visitable,
|
|
clickable,
|
|
isVisible,
|
|
submitable,
|
|
deletable,
|
|
cancelable,
|
|
intentionPermissionForm,
|
|
intentionPermissionList
|
|
)
|
|
),
|
|
nspaces: create(nspaces(visitable, creatable, consulNspaceList, popoverSelect)),
|
|
nspace: create(
|
|
nspace(visitable, submitable, deletable, cancelable, policySelector, roleSelector)
|
|
),
|
|
peers: create(peers(visitable, creatable, consulPeerList, popoverSelect)),
|
|
peer: create(peersShow(visitable)),
|
|
settings: create(settings(visitable, submitable, isPresent)),
|
|
routingConfig: create(routingConfig(visitable, text)),
|
|
};
|