mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.5 KiB
64 lines
1.5 KiB
export const tests = [] |
|
const t = (f) => tests.push(f) |
|
|
|
// objects mutability |
|
t(({ eq }) => |
|
eq( |
|
replica( |
|
{}, |
|
Object.freeze({ line: 'Replicants are like any other machine' }), |
|
Object.freeze({ author: 'Rich' }), |
|
), |
|
{ line: 'Replicants are like any other machine', author: 'Rich' }, |
|
), |
|
) |
|
|
|
// different value types |
|
t(({ eq }) => |
|
eq(replica({ con: console.log }, { reg: /hello/ }), { |
|
con: console.log, |
|
reg: /hello/, |
|
}), |
|
) |
|
|
|
// primitive into an object |
|
t(({ eq }) => eq(replica({ a: 4 }, { a: { b: 1 } }).a.b, 1)) |
|
|
|
// nested array into a primitive |
|
t(({ eq }) => |
|
eq( |
|
replica({ a: { b: { c: [123, 1] } } }, { a: { b: { c: '1' } } }).a.b.c, |
|
'1', |
|
), |
|
) |
|
|
|
// primitive into an array |
|
t(({ eq }) => eq(replica({ a: 2 }, { a: [4] }).a, [4])) |
|
|
|
// object into an array |
|
t(({ eq }) => eq(replica({ a: { b: [2] } }, { a: [4] }).a, [4])) |
|
|
|
// array into an object |
|
t(({ eq }) => eq(replica({ a: [1, 2, 4] }, { a: { b: [4] } }).a, { b: [4] })) |
|
|
|
// nested objects |
|
t(({ eq }) => |
|
eq(replica({ a: { b: 1, c: 2 } }, { a: { c: 23 } }), { a: { b: 1, c: 23 } }), |
|
) |
|
|
|
// super nested objects |
|
// letter+number indicates the depth |
|
t(({ eq }) => |
|
eq( |
|
replica( |
|
{}, |
|
{ a: { b1: 1, c1: 2 } }, |
|
{ a: { b1: { d2: 1, e2: 2 } } }, |
|
{ a: { b1: { d2: { f3: 1, h3: 1 }, e2: { g3: 2 } } } }, |
|
{ a: { b1: { d2: { f3: { i4: 1 }, h3: 1 }, e2: { g3: 2 } } } }, |
|
), |
|
{ a: { b1: { d2: { f3: { i4: 1 }, h3: 1 }, e2: { g3: 2 } }, c1: 2 } }, |
|
), |
|
) |
|
|
|
Object.freeze(tests)
|
|
|