forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookmarks.test.ts
More file actions
159 lines (137 loc) · 7.18 KB
/
bookmarks.test.ts
File metadata and controls
159 lines (137 loc) · 7.18 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import { silenceDebugMessages } from '../helpers/debugger'
import { findBookmarkDocument, renderBookmarksButton, toggleBookmark } from '../../../src/chat/bookmarks'
import { NamedNode, Namespace } from 'rdflib'
import { clearStore } from '../helpers/clearStore'
import { ns } from '../../../src/'
import { solidLogicSingleton } from 'solid-logic-jss'
const store = solidLogicSingleton.store
const BOOK = Namespace('http://www.w3.org/2002/01/bookmark#')
silenceDebugMessages()
describe('findBookmarkDocument', () => {
afterEach(clearStore)
it('exists', () => {
expect(findBookmarkDocument).toBeInstanceOf(Function)
})
it('runs', async () => {
const context = {
index: {}
}
window.alert = () => {}
const result = await findBookmarkDocument(context)
expect(result.instances).toEqual([])
})
it('one public bookmark docs', async () => {
const pubReg1 = new NamedNode('http://example.com/pubType.ttl#reg1')
const bookmarksDoc1 = new NamedNode('http://example.com/bookmarks1.ttl')
const context = {
me: new NamedNode('http://example.com/profile/card#me'),
publicProfile: new NamedNode('http://example.com/profile/card'),
preferencesFile: new NamedNode('http://example.com/prefs.ttl'),
privateTypeIndex: new NamedNode('http://example.com/privType.ttl'),
publicTypeIndex: new NamedNode('http://example.com/pubType.ttl')
}
window.alert = jest.fn()
store.add(context.me, ns.space('preferencesFile'), context.preferencesFile, context.publicProfile)
// announce private index in settings:
store.add(context.me, ns.solid('privateTypeIndex'), context.privateTypeIndex, context.preferencesFile)
// announce public index in profile:
store.add(context.me, ns.solid('publicTypeIndex'), context.publicTypeIndex, context.publicProfile)
store.add(pubReg1, ns.rdf('type'), ns.solid('TypeRegistration'), context.publicTypeIndex)
store.add(pubReg1, ns.solid('forClass'), BOOK('Bookmark'), context.publicTypeIndex)
store.add(pubReg1, ns.solid('instance'), bookmarksDoc1, context.publicTypeIndex)
const userContext = await findBookmarkDocument(context)
expect(userContext.bookmarkDocument.value).toEqual('http://example.com/bookmarks1.ttl')
})
it.skip('complains if you have multiple bookmark docs', async () => {
const privReg = new NamedNode('http://example.com/privType.ttl#reg1')
const pubReg1 = new NamedNode('http://example.com/pubType.ttl#reg1')
const pubReg2 = new NamedNode('http://example.com/pubType.ttl#reg2')
const bookmarksDoc1 = new NamedNode('http://example.com/bookmarks1.ttl')
const bookmarksDoc2 = new NamedNode('http://example.com/bookmarks2.ttl')
const bookmarksDoc3 = new NamedNode('http://example.com/bookmarks3.ttl')
const context = {
me: new NamedNode('http://example.com/profile/card#me'),
publicProfile: new NamedNode('http://example.com/profile/card'),
preferencesFile: new NamedNode('http://example.com/prefs.ttl'),
privateTypeIndex: new NamedNode('http://example.com/privType.ttl'),
publicTypeIndex: new NamedNode('http://example.com/pubType.ttl')
}
window.alert = jest.fn()
store.add(context.me, ns.space('preferencesFile'), context.preferencesFile, context.publicProfile)
// announce private index in settings:
store.add(context.me, ns.solid('privateTypeIndex'), context.privateTypeIndex, context.preferencesFile)
// announce public index in profile:
store.add(context.me, ns.solid('publicTypeIndex'), context.publicTypeIndex, context.publicProfile)
store.add(privReg, ns.rdf('type'), ns.solid('TypeRegistration'), context.privateTypeIndex)
store.add(privReg, ns.solid('forClass'), BOOK('Bookmark'), context.privateTypeIndex)
store.add(privReg, ns.solid('instance'), bookmarksDoc1, context.privateTypeIndex)
store.add(pubReg1, ns.rdf('type'), ns.solid('TypeRegistration'), context.publicTypeIndex)
store.add(pubReg1, ns.solid('forClass'), BOOK('Bookmark'), context.publicTypeIndex)
store.add(pubReg1, ns.solid('instance'), bookmarksDoc2, context.publicTypeIndex)
store.add(pubReg2, ns.rdf('type'), ns.solid('TypeRegistration'), context.publicTypeIndex)
store.add(pubReg2, ns.solid('forClass'), BOOK('Bookmark'), context.publicTypeIndex)
store.add(pubReg2, ns.solid('instance'), bookmarksDoc3, context.publicTypeIndex)
await findBookmarkDocument(context)
expect((window.alert as any).mock.calls.length).toEqual(1)
expect((window.alert as any).mock.calls[0][0]).toMatchSnapshot()
})
it('does not complains if you have one bookmark docs', async () => {
const privReg = new NamedNode('http://example.com/privType.ttl#reg1')
const pubReg1 = new NamedNode('http://example.com/pubType.ttl#reg1')
const bookmarksDoc1 = new NamedNode('http://example.com/bookmarks1.ttl')
const bookmarksDoc2 = new NamedNode('http://example.com/bookmarks2.ttl')
const context = {
me: new NamedNode('http://example.com/profile/card#me'),
publicProfile: new NamedNode('http://example.com/profile/card'),
preferencesFile: new NamedNode('http://example.com/prefs.ttl'),
privateTypeIndex: new NamedNode('http://example.com/privType.ttl'),
publicTypeIndex: new NamedNode('http://example.com/pubType.ttl')
}
window.alert = jest.fn()
store.add(context.me, ns.space('preferencesFile'), context.preferencesFile, context.publicProfile)
// announce private index in settings:
store.add(context.me, ns.solid('privateTypeIndex'), context.privateTypeIndex, context.preferencesFile)
// announce public index in profile:
store.add(context.me, ns.solid('publicTypeIndex'), context.publicTypeIndex, context.publicProfile)
store.add(privReg, ns.rdf('type'), ns.solid('TypeRegistration'), context.privateTypeIndex)
store.add(privReg, ns.solid('forClass'), BOOK('Bookmark'), context.privateTypeIndex)
store.add(privReg, ns.solid('instance'), bookmarksDoc1, context.privateTypeIndex)
store.add(pubReg1, ns.rdf('type'), ns.solid('TypeRegistration'), context.publicTypeIndex)
store.add(pubReg1, ns.solid('forClass'), BOOK('Bookmark'), context.publicTypeIndex)
store.add(pubReg1, ns.solid('instance'), bookmarksDoc2, context.publicTypeIndex)
await findBookmarkDocument(context)
expect((window.alert as any).mock.calls.length).toEqual(0)
})
})
describe('toggleBookmark', () => {
it('exists', () => {
expect(toggleBookmark).toBeInstanceOf(Function)
})
it('runs', async () => {
const userContext = {
me: new NamedNode('http://example.com'),
bookmarkDocument: new NamedNode('http://example.com')
}
const target = {}
const bookmarkButton = {}
try {
await toggleBookmark(userContext, target, bookmarkButton)
} catch (e) {
expect(e.message).toEqual('Must be logged on to add Bookmark')
}
})
})
describe('renderBookmarksButton', () => {
it('exists', () => {
expect(renderBookmarksButton).toBeInstanceOf(Function)
})
it('runs', async () => {
const userContext = {
me: new NamedNode('http://example.com'),
bookmarkDocument: new NamedNode('http://example.com')
}
const target = {}
const result = await renderBookmarksButton(userContext, target)
expect(typeof result).toEqual('object')
})
})