-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCleanup.coffee
140 lines (132 loc) · 4.91 KB
/
Cleanup.coffee
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
Flatten = require '../build/flatten-html'
chai = require 'chai'
describe 'Cleanup', ->
f = null
beforeEach ->
f = new Flatten
describe 'cleaning an already-clean block structure', ->
it 'should keep things as they are', (done) ->
item =
content: [
id: 'foo'
type: 'h1'
html: '<h1>Hello world!</h1>'
metadata:
title: 'Foo'
,
id: 'bar'
type: 'text'
html: '<p>This is some text</p>'
metadata:
title: 'Bar'
]
expected = JSON.parse JSON.stringify item
expected.content[0].text = 'Hello world!'
f.flattenItem item, (err) ->
return done err if err
chai.expect(item).to.eql expected
done()
describe 'cleaning a block structure with placeholder', ->
it 'should keep things as they are', (done) ->
item =
content: [
id: 'foo'
type: 'h1'
html: '<h1>Hello world!</h1>'
metadata:
title: 'Foo'
,
id: 'baz'
type: 'placeholder'
html: ''
,
id: 'bar'
type: 'text'
html: '<p>This is some text</p>'
metadata:
title: 'Bar'
]
expected = JSON.parse JSON.stringify item
expected.content[0].text = 'Hello world!'
f.flattenItem item, (err) ->
return done err if err
chai.expect(item).to.eql expected
done()
describe 'cleaning a dirty HTML structure', ->
it 'should produce clean blocks', (done) ->
item =
content: [
id: 'foo'
type: 'h1'
html: '<h1 style="color: brown">Hello world!</h1><p><br/></p><p>Foobar</p>'
metadata:
title: 'Foo'
,
id: 'bar'
type: 'text'
html: '<p>This is some text</p>'
metadata:
title: 'Bar'
]
orig = JSON.parse JSON.stringify item
f.flattenItem item, (err) ->
return done err if err
chai.expect(item.content.length).to.equal 3
chai.expect(item.content[0]).to.eql
id: 'foo'
type: 'h1'
html: '<h1>Hello world!</h1>'
text: 'Hello world!'
metadata:
title: 'Foo'
chai.expect(item.content[1]).to.eql
type: 'text'
html: '<p>Foobar</p>'
chai.expect(item.content[2]).to.eql orig.content[1]
done()
describe 'cleaning a block inside a block', ->
it 'should produce a clean block', (done) ->
item =
content: [
id: 'foo'
type: 'h1'
html: '<h1><p data-grid-id="1d6da340-4dc3-4979-b14a-e676bd6d829b">Welcome to a Digital Solutions agency that specialize in cost effective SEO, SEM, SMM, Branding, Planning, Content, Automation, Programmatic, Web and App Development, Metrics and Purchasing</p></h1>'
metadata:
title: 'Foo'
,
id: 'bar'
type: 'quote'
html: '<blockquote><p data-grid-id="099b7305-7631-45cf-9b00-a553baa5da47">A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.</p><p data-grid-id="bcdd91f9-e33e-48ee-b0f8-f85929ef34ba"></p><p data-grid-id="d1b31853-a2d7-4a77-a1f6-2830ec4b13c2"></p></blockquote>'
]
orig = JSON.parse JSON.stringify item
f.flattenItem item, (err) ->
return done err if err
chai.expect(item.content.length).to.equal 2
chai.expect(item.content[0]).to.eql
id: 'foo'
type: 'h1'
html: '<h1>Welcome to a Digital Solutions agency that specialize in cost effective SEO, SEM, SMM, Branding, Planning, Content, Automation, Programmatic, Web and App Development, Metrics and Purchasing</h1>'
text: 'Welcome to a Digital Solutions agency that specialize in cost effective SEO, SEM, SMM, Branding, Planning, Content, Automation, Programmatic, Web and App Development, Metrics and Purchasing'
metadata:
title: 'Foo'
chai.expect(item.content[1]).to.eql
id: 'bar'
type: 'quote'
html: '<blockquote><p>A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.</p></blockquote>'
text: 'A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.'
done()
describe 'cleaning up a full item', ->
it 'should produce clean blocks', (done) ->
fs = require 'fs'
path = require 'path'
item = JSON.parse fs.readFileSync __dirname+'/fixtures/put.json', 'utf-8'
orig = JSON.parse JSON.stringify item
f.flattenItem item, (err) ->
return done err if err
types = item.content.map (b) -> b.type
chai.expect(types).to.eql [
'image'
'image'
'image'
]
done()