-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(form): 修复 formitem 的值如果是对象会自动重置为空对象的问题 (#2952)
* fix(form): formitem 的值如果是对象会自动重置为空对象 * fix(form): formitem 的值如果是对象会自动重置为空对象 * test: 增加单测 * test: 增加单测 * fix: reviews * fix: reviews
- Loading branch information
1 parent
ebf27db
commit 36220ef
Showing
4 changed files
with
350 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,263 @@ | ||
import { merge, clone, recursive, isPlainObject } from '@/utils/merge' | ||
|
||
describe('merge', () => { | ||
it('merges two objects', () => { | ||
expect(merge({ a: 1 }, { b: 2 })).toStrictEqual({ a: 1, b: 2 }) | ||
}) | ||
|
||
it('merges nested levels', () => { | ||
expect(merge({ a: 1 }, { b: { c: { d: 2 } } })).toStrictEqual({ | ||
a: 1, | ||
b: { c: { d: 2 } }, | ||
}) | ||
}) | ||
it('clones the target', () => { | ||
let input = { | ||
a: 1, | ||
b: { | ||
c: { | ||
d: 2, | ||
e: ['x', 'y', { z: { w: ['k'] } }], | ||
}, | ||
}, | ||
f: null, | ||
g: undefined, | ||
h: true, | ||
} | ||
|
||
const original = { | ||
a: 1, | ||
b: { | ||
c: { | ||
d: 2, | ||
e: ['x', 'y', { z: { w: ['k'] } }], | ||
}, | ||
}, | ||
f: null, | ||
g: undefined, | ||
h: true, | ||
} | ||
|
||
let output = merge(true, input) | ||
|
||
input.b.c.d++ | ||
;(input.b.c.e[2] as any).z.w = null | ||
;(input as any).h = null | ||
|
||
expect(output).toStrictEqual(original) | ||
|
||
input = original | ||
|
||
output = merge(true, input, { a: 2 }) | ||
|
||
expect(output.a).toBe(2) | ||
expect(input.a).toBe(1) | ||
}) | ||
|
||
it('ignores the sources', () => { | ||
const values = createNonPlainObjects() | ||
const $merge = vi.fn().mockImplementation(merge) | ||
|
||
for (const value of values) expect($merge(value)).toStrictEqual({}) | ||
|
||
expect(values.length).toBeGreaterThan(0) | ||
expect($merge).toBeCalledTimes(values.length) | ||
expect( | ||
merge(...values, [0, 1, 2], ...values, { a: 1 }, ...values, { | ||
b: 2, | ||
}) | ||
).toStrictEqual({ a: 1, b: 2 }) | ||
}) | ||
|
||
it('does not merge non plain objects', () => { | ||
const values = createNonPlainObjects() | ||
expect(values.length).toBeGreaterThan(0) | ||
const input: any = {} | ||
|
||
for (const [index, value] of Object.entries(values)) { | ||
input[`value${index}`] = value | ||
} | ||
|
||
const output = merge({}, input) | ||
|
||
for (const [index] of Object.entries(values)) { | ||
const key = `value${index}` | ||
const inputValue = input[key] | ||
const outputValue = output[key] | ||
|
||
// eslint-disable-next-line no-restricted-globals | ||
if (typeof outputValue === 'number' && isNaN(outputValue)) { | ||
// eslint-disable-next-line no-restricted-globals | ||
expect(isNaN(inputValue), key).toBeTruthy() | ||
} else { | ||
expect(inputValue === outputValue, key).toBeTruthy() | ||
} | ||
} | ||
}) | ||
|
||
it('is safe', () => { | ||
expect( | ||
merge({}, JSON.parse('{"__proto__": {"evil": true}}')) | ||
).toStrictEqual({}) | ||
expect(({} as any).evil).toBeUndefined() | ||
}) | ||
}) | ||
|
||
describe('clone', () => { | ||
it('clones the input', () => { | ||
const object1 = { a: 1, b: { c: 2 } } | ||
const object2 = clone(object1) | ||
|
||
expect(object1).toStrictEqual(object2) | ||
expect(object1 === object2).toBeFalsy() | ||
expect(object1.b === object2.b).toBeFalsy() | ||
}) | ||
|
||
it('clones each item of the array', () => { | ||
const object1 = [{ a: 1, b: { c: 2 } }] | ||
const object2 = clone(object1) | ||
|
||
expect(object1).toStrictEqual(object2) | ||
expect(object1 === object2).toBeFalsy() | ||
expect(object1[0] === object2[0]).toBeFalsy() | ||
expect(object1[0].b === object2[0].b).toBeFalsy() | ||
}) | ||
|
||
it('returns the same input', () => { | ||
const values = createNonPlainObjects() | ||
const $clone = vi.fn().mockImplementation(clone) | ||
for (const value of values) { | ||
const cloned = $clone(value) | ||
// eslint-disable-next-line no-restricted-globals | ||
if (typeof cloned === 'number' && isNaN(cloned)) { | ||
// eslint-disable-next-line no-restricted-globals | ||
expect(isNaN(value)).toBeTruthy() | ||
} else if (Array.isArray(cloned)) { | ||
expect(Array.isArray(value)).toBeTruthy() | ||
} else { | ||
expect(cloned === value).toBeTruthy() | ||
} | ||
} | ||
expect(values.length).toBeGreaterThan(0) | ||
expect($clone).toBeCalledTimes(values.length) | ||
}) | ||
}) | ||
|
||
describe('recursive', () => { | ||
it('merges recursively', () => { | ||
expect(recursive({ a: { b: 1 } }, { a: { c: 1 } })).toStrictEqual({ | ||
a: { b: 1, c: 1 }, | ||
}) | ||
|
||
expect(recursive({ a: { b: 1, c: 1 } }, { a: { b: 2 } })).toStrictEqual({ | ||
a: { b: 2, c: 1 }, | ||
}) | ||
|
||
expect( | ||
recursive({ a: { b: [1, 2, 3], c: 1 } }, { a: { b: ['a'] } }) | ||
).toStrictEqual({ a: { b: ['a'], c: 1 } }) | ||
|
||
expect( | ||
recursive({ a: { b: { b: 2 }, c: 1 } }, { a: { b: 2 } }) | ||
).toStrictEqual({ | ||
a: { b: 2, c: 1 }, | ||
}) | ||
}) | ||
|
||
it('clones recursively', () => { | ||
const test1 = { a: { b: 1 } } | ||
|
||
expect(recursive(true, test1, { a: { c: 1 } })).toStrictEqual({ | ||
a: { b: 1, c: 1 }, | ||
}) | ||
|
||
expect(test1).toStrictEqual({ a: { b: 1 } }) | ||
|
||
const test2 = { a: { b: 1, c: 1 } } | ||
|
||
expect(recursive(true, test2, { a: { b: 2 } })).toStrictEqual({ | ||
a: { b: 2, c: 1 }, | ||
}) | ||
|
||
expect(test2).toStrictEqual({ a: { b: 1, c: 1 } }) | ||
|
||
const test3 = { a: { b: [1, 2, 3], c: 1 } } | ||
|
||
expect(recursive(true, test3, { a: { b: ['a'] } })).toStrictEqual({ | ||
a: { b: ['a'], c: 1 }, | ||
}) | ||
|
||
expect(test3).toStrictEqual({ a: { b: [1, 2, 3], c: 1 } }) | ||
|
||
const test4 = { a: { b: { b: 2 }, c: 1 } } | ||
|
||
expect(recursive(true, test4, { a: { b: 2 } })).toStrictEqual({ | ||
a: { b: 2, c: 1 }, | ||
}) | ||
|
||
expect(test4).toStrictEqual({ a: { b: { b: 2 }, c: 1 } }) | ||
}) | ||
|
||
it('does not merge non plain objects', () => { | ||
const object = recursive({ map: { length: 1 } }, { map: new Map() }) | ||
expect(object.map).toBeInstanceOf(Map) | ||
}) | ||
|
||
it('is safe', () => { | ||
const payload = '{"__proto__": {"a": true}}' | ||
expect(recursive({}, JSON.parse(payload))).toStrictEqual({}) | ||
expect(({} as any).a).toBeUndefined() | ||
expect(recursive({ deep: {} }, JSON.parse(payload))).toStrictEqual({ | ||
deep: {}, | ||
}) | ||
expect(({} as any).b).toBeUndefined() | ||
}) | ||
}) | ||
|
||
describe('isPlainObject', () => { | ||
it('returns true', () => { | ||
expect(isPlainObject({})).toBeTruthy() | ||
expect(isPlainObject({ v: 1 })).toBeTruthy() | ||
expect(isPlainObject(Object.create(null))).toBeTruthy() | ||
expect(isPlainObject({})).toBeTruthy() | ||
}) | ||
it('returns false', () => { | ||
const values = createNonPlainObjects() | ||
const $isPlainObject = vi.fn().mockImplementation(isPlainObject) | ||
for (const value of values) expect($isPlainObject(value)).toBeFalsy() | ||
expect(values.length).toBeGreaterThan(0) | ||
expect($isPlainObject).toBeCalledTimes(values.length) | ||
}) | ||
}) | ||
|
||
function createNonPlainObjects(): any[] { | ||
class SubObject extends Object {} | ||
|
||
return [ | ||
null, | ||
undefined, | ||
1, | ||
'', | ||
'str', | ||
[], | ||
[1], | ||
() => {}, | ||
function () {}, | ||
true, | ||
false, | ||
NaN, | ||
Infinity, | ||
class {}, | ||
new (class {})(), | ||
new Map(), | ||
new Set(), | ||
new Date(), | ||
[], | ||
new Date(), | ||
/./, | ||
/./, | ||
SubObject, | ||
new SubObject(), | ||
Symbol(''), | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.