diff options
author | svishnev <shlomo-stanisla.vishnevetskiy@amdocs.com> | 2018-01-15 15:55:53 +0200 |
---|---|---|
committer | svishnev <shlomo-stanisla.vishnevetskiy@amdocs.com> | 2018-01-15 15:56:03 +0200 |
commit | a3e9c9ecebcf5ab4dc83ee06126b5e6883b637e6 (patch) | |
tree | b8fc8944307c339ec6b5e0fb635bc0996e1e7267 /openecomp-ui/test/nfvo-components/panel/VersionController/versionController.test.js | |
parent | d1bb2e5be03dba561ae3aa13041c3a46396a1581 (diff) |
Contributor can also submit fix
Issue-ID: SDC-931
Change-Id: Ic2f67552614e8236b3e19a6a205b699e36947968
Signed-off-by: svishnev <shlomo-stanisla.vishnevetskiy@amdocs.com>
Diffstat (limited to 'openecomp-ui/test/nfvo-components/panel/VersionController/versionController.test.js')
-rw-r--r-- | openecomp-ui/test/nfvo-components/panel/VersionController/versionController.test.js | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/openecomp-ui/test/nfvo-components/panel/VersionController/versionController.test.js b/openecomp-ui/test/nfvo-components/panel/VersionController/versionController.test.js index 64304ab9de..73dd6b6977 100644 --- a/openecomp-ui/test/nfvo-components/panel/VersionController/versionController.test.js +++ b/openecomp-ui/test/nfvo-components/panel/VersionController/versionController.test.js @@ -1,17 +1,17 @@ -/* +/*! * Copyright © 2016-2017 European Support Limited * * 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 - * + * + * 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. + * 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. */ @@ -105,13 +105,25 @@ describe('versionController UI Component', () => { expect(elem.length).toBe(1); }); - it('Doesn\'t show the submit button when user is not owner', () => { - const permissions = {owner: {userId: '111'}}, - userInfo = {userId: '222'}; + it('Shows the submit button when callVCAction available and user is contributor', () => { + const permissions = {owner: {userId: '111'}, contributors: ['232']}, + userInfo = {userId: '232'}; let callVCActionProps = { ...props, callVCAction: function(){}, permissions, userInfo}; let versionController = TestUtils.renderIntoDocument(<Provider store={store}><VersionController {...callVCActionProps} /></Provider>); let elem = scryRenderedDOMComponentsWithTestId(versionController,'vc-submit-btn'); expect(elem).toBeTruthy(); + expect(elem.length).toBe(1); + }); + + it('Doesn\'t show the submit button when user is not owner or contributor', () => { + const permissions = {owner: {userId: '111'}, contributors: ['232']}, + userInfo = {userId: '222'}; + const propsViewer = {...props, + itemPermission: {isCertified: false, isCollaborator: false, isDirty: false}}; + let callVCActionProps = { ...propsViewer, callVCAction: function(){}, permissions, userInfo}; + let versionController = TestUtils.renderIntoDocument(<Provider store={store}><VersionController {...callVCActionProps} /></Provider>); + let elem = scryRenderedDOMComponentsWithTestId(versionController,'vc-submit-btn'); + expect(elem).toBeTruthy(); expect(elem.length).toBe(0); }); |