File tree 4 files changed +11
-31
lines changed
4 files changed +11
-31
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,8 @@ export abstract class Client extends EventEmitter<{'status': RoundStatus}>{
178
178
url . pathname += `tasks/${ this . task . id } /model.json`
179
179
180
180
const response = await fetch ( url ) ;
181
+ if ( ! response . ok ) throw new Error ( `fetch: HTTP status ${ response . status } ` ) ;
182
+
181
183
const encoded = new Uint8Array ( await response . arrayBuffer ( ) )
182
184
return await serialization . model . decode ( encoded )
183
185
}
Original file line number Diff line number Diff line change @@ -20,20 +20,22 @@ export async function pushTask<D extends DataType>(
20
20
task : Task < D > ,
21
21
model : Model < D > ,
22
22
) : Promise < void > {
23
- await fetch ( urlToTasks ( base ) , {
23
+ const response = await fetch ( urlToTasks ( base ) , {
24
24
method : "POST" ,
25
25
body : JSON . stringify ( {
26
26
task,
27
27
model : await serialization . model . encode ( model ) ,
28
28
weights : await serialization . weights . encode ( model . weights ) ,
29
29
} ) ,
30
30
} ) ;
31
+ if ( ! response . ok ) throw new Error ( `fetch: HTTP status ${ response . status } ` ) ;
31
32
}
32
33
33
34
export async function fetchTasks (
34
35
base : URL ,
35
36
) : Promise < Map < TaskID , Task < DataType > > > {
36
37
const response = await fetch ( urlToTasks ( base ) ) ;
38
+ if ( ! response . ok ) throw new Error ( `fetch: HTTP status ${ response . status } ` ) ;
37
39
const tasks : unknown = await response . json ( ) ;
38
40
39
41
if ( ! Array . isArray ( tasks ) ) {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ it("shows stored models", async () => {
60
60
it ( "allows to download server's models" , async ( ) => {
61
61
vi . stubGlobal ( "fetch" , async ( url : string | URL ) => {
62
62
if ( url . toString ( ) === "http://localhost:8080/tasks" )
63
- return { json : ( ) => Promise . resolve ( [ TASK ] ) } ;
63
+ return new Response ( JSON . stringify ( [ TASK ] ) ) ;
64
64
throw new Error ( `unhandled get: ${ url } ` ) ;
65
65
} ) ;
66
66
afterEach ( ( ) => {
Original file line number Diff line number Diff line change @@ -10,39 +10,15 @@ import { loadCSV } from "@epfml/discojs-web";
10
10
import Trainer from "../Trainer.vue" ;
11
11
import TrainingInformation from "../TrainingInformation.vue" ;
12
12
13
- vi . mock ( "axios" , async ( ) => {
14
- async function get ( url : string ) {
15
- if ( url === "http://localhost:8080/tasks/titanic/model.json" ) {
16
- return {
17
- data : await serialization . model . encode (
18
- await defaultTasks . titanic . getModel ( ) ,
19
- ) ,
20
- } ;
21
- }
22
- throw new Error ( "unhandled get" ) ;
23
- }
24
-
25
- const axios = await vi . importActual < typeof import ( "axios" ) > ( "axios" ) ;
26
- return {
27
- ...axios ,
28
- default : {
29
- ...axios . default ,
30
- get,
31
- } ,
32
- } ;
33
- } ) ;
34
-
35
13
async function setupForTask ( ) {
36
14
const provider = defaultTasks . titanic ;
37
15
38
16
vi . stubGlobal ( "fetch" , async ( url : string | URL ) => {
39
- if ( url . toString ( ) === "http://localhost:8080/tasks/titanic/model.json" )
40
- return {
41
- arrayBuffer : async ( ) => {
42
- const model = await provider . getModel ( ) ;
43
- return await serialization . model . encode ( model ) ;
44
- } ,
45
- } ;
17
+ if ( url . toString ( ) === "http://localhost:8080/tasks/titanic/model.json" ) {
18
+ const model = await provider . getModel ( ) ;
19
+ const encoded = await serialization . model . encode ( model ) ;
20
+ return new Response ( encoded ) ;
21
+ }
46
22
throw new Error ( `unhandled get: ${ url } ` ) ;
47
23
} ) ;
48
24
afterEach ( ( ) => {
You can’t perform that action at this time.
0 commit comments