1
1
import { h , render , rerender } from "preact" ;
2
2
import { testBrowser } from "../tools/tester" ;
3
+ import { NotebookPage , ProfilePage } from "./app" ;
3
4
import { cellExecuteQueue } from "./components/cell" ;
4
5
import { Notebook } from "./components/notebook" ;
5
6
import * as db from "./db" ;
6
- import * as nb from "./notebook_root" ;
7
7
import { assert , assertEqual , createResolvable } from "./util" ;
8
8
9
9
const DOC_TITLE = "Anonymous Notebook" ;
10
10
11
- testBrowser ( async function notebook_NotebookRoot ( ) {
12
- const mdb = db . enableMock ( ) ;
13
- resetPage ( ) ;
14
- const el = h ( nb . NotebookRoot , { } ) ;
15
- render ( el , document . body ) ;
16
- await flush ( ) ;
17
- assertEqual ( mdb . counts , { queryLatest : 1 } ) ;
18
- const c = document . body . getElementsByTagName ( "div" ) [ 0 ] ;
19
- assertEqual ( c . className , "notebook" ) ;
20
- } ) ;
21
-
22
11
testBrowser ( async function notebook_Notebook ( ) {
23
12
const mdb = db . enableMock ( ) ;
24
13
await renderAnonNotebook ( ) ;
@@ -125,21 +114,21 @@ testBrowser(async function notebook_profile() {
125
114
await renderProfile ( "non-existant" ) ;
126
115
let avatars = document . querySelectorAll ( ".avatar" ) ;
127
116
assert ( avatars . length === 0 ) ;
128
- let notebooks = document . querySelectorAll ( ".most-recent ol li" ) ;
117
+ let notebooks = document . querySelectorAll ( ".nb-listing ol li" ) ;
129
118
assert ( notebooks . length === 0 ) ;
130
119
assertEqual ( mdb . counts , { queryProfile : 1 } ) ;
131
120
132
121
// Try again with a real uid.
133
122
await renderProfile ( db . defaultOwner . uid ) ;
134
123
avatars = document . querySelectorAll ( ".avatar" ) ;
135
124
assert ( avatars . length === 1 ) ;
136
- notebooks = document . querySelectorAll ( ".most-recent ol li" ) ;
125
+ notebooks = document . querySelectorAll ( ".nb-listing ol li" ) ;
137
126
assert ( notebooks . length === 1 ) ;
138
127
assertEqual ( mdb . counts , { queryProfile : 2 } ) ;
139
128
} ) ;
140
129
141
130
testBrowser ( async function notebook_executeQueue ( ) {
142
- const { notebookRef } = await renderAnonNotebook ( ) ;
131
+ const notebookRef = await renderAnonNotebook ( ) ;
143
132
// All the cells must be executed now.
144
133
assertEqual ( cellExecuteQueue . length , 0 ) ;
145
134
const cell1 = await notebookRef . insertCell ( 2 , "a = 0" ) ;
@@ -162,7 +151,7 @@ testBrowser(async function notebook_executeQueue() {
162
151
163
152
testBrowser ( async function notebook_urlImport ( ) {
164
153
db . enableMock ( ) ;
165
- const { notebookRef } = await renderAnonNotebook ( ) ;
154
+ const notebookRef = await renderAnonNotebook ( ) ;
166
155
const testdataUrl = `${ location . origin } /static/testdata` ;
167
156
168
157
const cell1 = await notebookRef . insertCell (
@@ -201,27 +190,32 @@ function resetPage() {
201
190
function renderProfile ( profileUid : string ) {
202
191
const promise = createResolvable ( ) ;
203
192
resetPage ( ) ;
204
- const el = h ( nb . NotebookRoot , {
205
- onReady : promise . resolve ,
206
- profileUid
193
+ const el = h ( ProfilePage , {
194
+ matches : {
195
+ userId : profileUid
196
+ } ,
197
+ onReady : promise . resolve
207
198
} ) ;
208
199
render ( el , document . body ) ;
209
200
return promise ;
210
201
}
211
202
212
- async function renderAnonNotebook ( ) : Promise < nb . NotebookRoot > {
203
+ async function renderAnonNotebook ( ) : Promise < Notebook > {
213
204
const promise = createResolvable ( ) ;
214
205
resetPage ( ) ;
215
- let notebookRoot : nb . NotebookRoot ;
216
- const el = h ( nb . NotebookRoot , {
217
- nbId : "default" ,
206
+ let notebookRoot ;
207
+ const el = h ( NotebookPage , {
208
+ matches : {
209
+ nbId : "default"
210
+ } ,
218
211
onReady : promise . resolve ,
219
- ref : n => ( notebookRoot = n )
212
+ ref : ref => ( notebookRoot = ref )
220
213
} ) ;
221
214
render ( el , document . body ) ;
222
215
await promise ;
223
- await notebookRoot . notebookRef . isReady ;
224
- return notebookRoot ;
216
+ const notebookRef = notebookRoot . componentRef ;
217
+ await notebookRef . isReady ;
218
+ return notebookRef ;
225
219
}
226
220
227
221
async function renderNotebook ( ) : Promise < Notebook > {
0 commit comments