Skip to content

Commit 2ea7e8b

Browse files
committed
Update nb_test
1 parent 76a0ee0 commit 2ea7e8b

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

src/app.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ function bind(C, bindProps: BindProps) {
4040
return class extends Component<any, BindState> {
4141
state = { data: null, error: null };
4242
prevMatches = null;
43+
componentRef;
44+
45+
private onReady() {
46+
if (this.props.onReady) this.props.onReady();
47+
}
4348

4449
async loadData() {
4550
if (equal(this.props.matches, this.prevMatches)) return;
@@ -62,7 +67,8 @@ function bind(C, bindProps: BindProps) {
6267
const { data, error } = this.state;
6368
if (error) return <ErrorPage message={error} />;
6469
if (!data) return <Loading />;
65-
return <C {...this.props} {...data} />;
70+
this.onReady();
71+
return <C ref={r => (this.componentRef = r)} {...this.props} {...data} />;
6672
}
6773
};
6874
}

src/nb_test.ts

+20-26
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
11
import { h, render, rerender } from "preact";
22
import { testBrowser } from "../tools/tester";
3+
import { NotebookPage, ProfilePage } from "./app";
34
import { cellExecuteQueue } from "./components/cell";
45
import { Notebook } from "./components/notebook";
56
import * as db from "./db";
6-
import * as nb from "./notebook_root";
77
import { assert, assertEqual, createResolvable } from "./util";
88

99
const DOC_TITLE = "Anonymous Notebook";
1010

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-
2211
testBrowser(async function notebook_Notebook() {
2312
const mdb = db.enableMock();
2413
await renderAnonNotebook();
@@ -125,21 +114,21 @@ testBrowser(async function notebook_profile() {
125114
await renderProfile("non-existant");
126115
let avatars = document.querySelectorAll(".avatar");
127116
assert(avatars.length === 0);
128-
let notebooks = document.querySelectorAll(".most-recent ol li");
117+
let notebooks = document.querySelectorAll(".nb-listing ol li");
129118
assert(notebooks.length === 0);
130119
assertEqual(mdb.counts, { queryProfile: 1 });
131120

132121
// Try again with a real uid.
133122
await renderProfile(db.defaultOwner.uid);
134123
avatars = document.querySelectorAll(".avatar");
135124
assert(avatars.length === 1);
136-
notebooks = document.querySelectorAll(".most-recent ol li");
125+
notebooks = document.querySelectorAll(".nb-listing ol li");
137126
assert(notebooks.length === 1);
138127
assertEqual(mdb.counts, { queryProfile: 2 });
139128
});
140129

141130
testBrowser(async function notebook_executeQueue() {
142-
const { notebookRef } = await renderAnonNotebook();
131+
const notebookRef = await renderAnonNotebook();
143132
// All the cells must be executed now.
144133
assertEqual(cellExecuteQueue.length, 0);
145134
const cell1 = await notebookRef.insertCell(2, "a = 0");
@@ -162,7 +151,7 @@ testBrowser(async function notebook_executeQueue() {
162151

163152
testBrowser(async function notebook_urlImport() {
164153
db.enableMock();
165-
const { notebookRef } = await renderAnonNotebook();
154+
const notebookRef = await renderAnonNotebook();
166155
const testdataUrl = `${location.origin}/static/testdata`;
167156

168157
const cell1 = await notebookRef.insertCell(
@@ -201,27 +190,32 @@ function resetPage() {
201190
function renderProfile(profileUid: string) {
202191
const promise = createResolvable();
203192
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
207198
});
208199
render(el, document.body);
209200
return promise;
210201
}
211202

212-
async function renderAnonNotebook(): Promise<nb.NotebookRoot> {
203+
async function renderAnonNotebook(): Promise<Notebook> {
213204
const promise = createResolvable();
214205
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+
},
218211
onReady: promise.resolve,
219-
ref: n => (notebookRoot = n)
212+
ref: ref => (notebookRoot = ref)
220213
});
221214
render(el, document.body);
222215
await promise;
223-
await notebookRoot.notebookRef.isReady;
224-
return notebookRoot;
216+
const notebookRef = notebookRoot.componentRef;
217+
await notebookRef.isReady;
218+
return notebookRef;
225219
}
226220

227221
async function renderNotebook(): Promise<Notebook> {

0 commit comments

Comments
 (0)