-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathserialize-and-encode.js
74 lines (63 loc) · 2.92 KB
/
serialize-and-encode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import test from 'ava'
import {compareDescriptors, describe, deserialize, formatDescriptor, serialize} from 'concordance'
import React from 'react'
import renderer from 'react-test-renderer'
import plugin from '..'
import HelloMessage, {MemoizedHelloMessage} from './fixtures/react/HelloMessage'
const plugins = [plugin]
const useDeserialized = (t, getValue) => {
const original = describe(getValue(), {plugins})
const buffer = serialize(original)
const deserialized = deserialize(buffer, {plugins})
t.true(
compareDescriptors(deserialized, original),
'the deserialized descriptor equals the original')
t.is(
formatDescriptor(deserialized, {plugins}),
formatDescriptor(original, {plugins}),
'the deserialized descriptor is formatted like the original')
const redeserialized = deserialize(serialize(deserialized), {plugins})
t.true(
compareDescriptors(redeserialized, original),
'after serializing and deserializing it again, the deserialized descriptor equals the original')
t.is(
formatDescriptor(redeserialized, {plugins}),
formatDescriptor(original, {plugins}),
'after serializing and deserializing it again, the deserialized descriptor is formatted like the original')
t.true(
compareDescriptors(redeserialized, deserialized),
'deserialized descriptors equal each other')
}
useDeserialized.title = prefix => `deserialized ${prefix} is equivalent to the original`
const useDeserializedRendered = (t, getValue) => {
return useDeserialized(t, () => renderer.create(getValue()).toJSON())
}
useDeserializedRendered.title = prefix => `deserialized rendered ${prefix} is equivalent to the original`
const macros = [useDeserialized, useDeserializedRendered]
test('react elements', macros, () => <HelloMessage name='John' />)
test('memoized elements', macros, () => <MemoizedHelloMessage name='John' />)
test('fragments', macros, () => <React.Fragment><HelloMessage name='John' /></React.Fragment>)
test('object properties', macros, () => {
return React.createElement('Foo', {object: {baz: 'thud'}})
})
test('array values in object properties', macros, () => {
return React.createElement('Foo', {object: {baz: ['thud']}})
})
test('array values in object properties in children', macros, () => {
return React.createElement('Foo', null, React.createElement('Bar', {key: 'bar', object: {baz: ['thud']}}))
})
test('multiline string properties', macros, () => {
return React.createElement('Foo', {multiline: 'foo\nbar'})
})
test('illegal spaces in property names', macros, () => {
return React.createElement('Foo', {'foo bar': 'baz'})
})
test('concatenated string and number children', macros, () => {
return React.createElement('div', null, 'foo', 'bar', 42)
})
test('concatenated string children (no space insertion)', macros, () => {
return React.createElement('div', null, 'foo\n', 'bar', ' baz')
})
test('properties and children', macros, () => {
return React.createElement('Foo', {foo: 'bar'}, 'baz')
})