blob: 7146267afe0adaea90b4d694b70bab08a935aff2 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001/*-
2 * ============LICENSE_START=======================================================
3 * SDC
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21import deepFreeze from 'deep-freeze';
22import ReactTestUtils from 'react-addons-test-utils';
23
24//returned object should be treated as immutable.
25export const cloneAndSet = (obj, path, value) => {
26 let retVal = {...obj};
27 let inner = retVal;
28
29 if (typeof path === 'string') {
30 path = path.split('.');
31 }
32
33 for (let i = 0; i < path.length - 1; i++) {
34 inner[path[i]] = {
35 ...inner[path[i]]
36 };
37 inner = inner[path[i]];
38 }
39 inner[path[path.length - 1]] = value;
40 return deepFreeze(retVal);
41};
42
43/**
44 * array findAllRenderedDOMComponentsWithTestId(
45 ReactComponent tree,
46 function test
47 )
48 * @param tree - ReactComponent
49 * @param testId - string
50 * @returns {Array.<T>}
51 */
52export const findAllRenderedComponentsWithTestId = (tree, testId) => {
53 return ReactTestUtils.findAllInRenderedTree(tree, component => component.props.testId === testId);
54};
55