@@ -57,6 +57,7 @@ static int fsync_cb_count;
57
57
static int fdatasync_cb_count ;
58
58
static int ftruncate_cb_count ;
59
59
static int sendfile_cb_count ;
60
+ static int fstat_cb_count ;
60
61
61
62
static uv_loop_t * loop ;
62
63
@@ -88,6 +89,15 @@ static void unlink_cb(uv_fs_t* req) {
88
89
uv_fs_req_cleanup (req );
89
90
}
90
91
92
+ static void fstat_cb (uv_fs_t * req ) {
93
+ struct stat * s = req -> ptr ;
94
+ ASSERT (req -> fs_type == UV_FS_FSTAT );
95
+ ASSERT (req -> result == 0 );
96
+ ASSERT (s -> st_size == sizeof (test_buf ));
97
+ uv_fs_req_cleanup (req );
98
+ fstat_cb_count ++ ;
99
+ }
100
+
91
101
92
102
static void close_cb (uv_fs_t * req ) {
93
103
int r ;
@@ -486,10 +496,10 @@ TEST_IMPL(fs_async_dir) {
486
496
487
497
TEST_IMPL (fs_async_sendfile ) {
488
498
int f , r ;
489
-
490
- /* Setup. */
491
499
struct stat s1 , s2 ;
492
500
501
+ /* Setup. */
502
+ uv_init ();
493
503
unlink ("test_file" );
494
504
unlink ("test_file2" );
495
505
@@ -509,7 +519,6 @@ TEST_IMPL(fs_async_sendfile) {
509
519
ASSERT (r == 0 );
510
520
511
521
/* Test starts here. */
512
- uv_init ();
513
522
loop = uv_default_loop ();
514
523
515
524
r = uv_fs_open (loop , & open_req1 , "test_file" , O_RDWR , 0 , NULL );
@@ -547,3 +556,58 @@ TEST_IMPL(fs_async_sendfile) {
547
556
548
557
return 0 ;
549
558
}
559
+
560
+
561
+ TEST_IMPL (fs_fstat ) {
562
+ int r ;
563
+ uv_fs_t req ;
564
+ uv_file file ;
565
+
566
+ /* Setup. */
567
+ unlink ("test_file" );
568
+
569
+ uv_init ();
570
+
571
+ loop = uv_default_loop ();
572
+
573
+ r = uv_fs_open (loop , & req , "test_file" , O_RDWR | O_CREAT , 0 , NULL );
574
+ ASSERT (r == 0 );
575
+ ASSERT (req .result != -1 );
576
+ file = req .result ;
577
+ uv_fs_req_cleanup (& req );
578
+
579
+ r = uv_fs_write (loop , & req , file , test_buf , sizeof (test_buf ), -1 , NULL );
580
+ ASSERT (r == 0 );
581
+ ASSERT (req .result == sizeof (test_buf ));
582
+ uv_fs_req_cleanup (& req );
583
+
584
+ r = uv_fs_fstat (loop , & req , file , NULL );
585
+ ASSERT (r == 0 );
586
+ ASSERT (req .result == 0 );
587
+ struct stat * s = req .ptr ;
588
+ ASSERT (s -> st_size == sizeof (test_buf ));
589
+ uv_fs_req_cleanup (& req );
590
+
591
+ /* Now do the uv_fs_fstat call asynchronously */
592
+ r = uv_fs_fstat (loop , & req , file , fstat_cb );
593
+ ASSERT (r == 0 );
594
+ uv_run (loop );
595
+ ASSERT (fstat_cb_count == 1 );
596
+
597
+
598
+ r = uv_fs_close (loop , & req , file , NULL );
599
+ ASSERT (r == 0 );
600
+ ASSERT (req .result == 0 );
601
+ uv_fs_req_cleanup (& req );
602
+
603
+ /*
604
+ * Run the loop just to check we don't have make any extranious uv_ref()
605
+ * calls. This should drop out immediately.
606
+ */
607
+ uv_run (loop );
608
+
609
+ /* Cleanup. */
610
+ unlink ("test_file" );
611
+
612
+ return 0 ;
613
+ }
0 commit comments