-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
Copy pathtest_nodefs_rw.c
57 lines (47 loc) · 1.29 KB
/
test_nodefs_rw.c
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
/*
* Copyright 2013 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <emscripten.h>
int main() {
FILE *file;
int res;
char buffer[512];
// write something locally with node
EM_ASM(
var fs = require('fs');
fs.writeFileSync('foobar.txt', 'yeehaw');
);
// read and validate the contents of the file
file = fopen("foobar.txt", "r");
assert(file);
res = fread(buffer, sizeof(char), 6, file);
assert(res == 6);
buffer[6] = '\0';
fclose(file);
printf("fread -> '%s'\n", buffer);
assert(!strcmp(buffer, "yeehaw"));
// write out something new
file = fopen("foobar.txt", "w");
assert(file);
res = fwrite("cheez", sizeof(char), 5, file);
assert(res == 5);
fclose(file);
// validate the changes were persisted to the underlying fs
EM_ASM(
var fs = require('fs');
var contents = fs.readFileSync('foobar.txt', { encoding: 'utf8' });
assert(contents === 'cheez');
);
file = fopen("csfsq", "r");
assert(file == NULL);
assert(errno == ENOENT);
puts("success");
return 0;
}