File: test_session.rb

package info (click to toggle)
ruby-net-sftp 1%3A2.1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 528 kB
  • ctags: 860
  • sloc: ruby: 5,015; makefile: 4
file content (741 lines) | stat: -rw-r--r-- 28,578 bytes parent folder | download | duplicates (5)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
require "common"

class SessionTest < Net::SFTP::TestCase
  include Net::SFTP::Constants
  include Net::SFTP::Constants::OpenFlags
  include Net::SFTP::Constants::PacketTypes

  (1..6).each do |version|
    define_method("test_server_reporting_version_#{version}_should_cause_version_#{version}_to_be_used") do
      expect_sftp_session :server_version => version
      assert_scripted { sftp.connect! }
      assert_equal version, sftp.protocol.version
    end
  end

  def test_v1_open_read_only_that_succeeds_should_invoke_callback
    expect_open("/path/to/file", "r", nil, :server_version => 1)
    assert_successful_open("/path/to/file")
  end

  def test_v1_open_read_only_that_fails_should_invoke_callback
    expect_open("/path/to/file", "r", nil, :server_version => 1, :fail => 2)

    assert_command_with_callback(:open, "/path/to/file") do |response|
      assert !response.ok?
      assert_equal 2, response.code
    end
  end

  def test_v1_open_write_only_that_succeeds_should_invoke_callback
    expect_open("/path/to/file", "w", nil, :server_version => 1)
    assert_successful_open("/path/to/file", "w")
  end

  def test_v1_open_read_write_that_succeeds_should_invoke_callback
    expect_open("/path/to/file", "rw", nil, :server_version => 1)
    assert_successful_open("/path/to/file", "r+")
  end

  def test_v1_open_append_that_succeeds_should_invoke_callback
    expect_open("/path/to/file", "a", nil, :server_version => 1)
    assert_successful_open("/path/to/file", "a")
  end

  def test_v1_open_with_permissions_should_specify_permissions
    expect_open("/path/to/file", "r", 0765, :server_version => 1)
    assert_successful_open("/path/to/file", "r", :permissions => 0765)
  end

  def test_v4_open_with_permissions_should_specify_permissions
    expect_open("/path/to/file", "r", 0765, :server_version => 4)
    assert_successful_open("/path/to/file", "r", :permissions => 0765)
  end

  def test_v5_open_read_only_shuld_invoke_callback
    expect_open("/path/to/file", "r", 0765, :server_version => 5)
    assert_successful_open("/path/to/file", "r", :permissions => 0765)
  end

  def test_v6_open_with_permissions_should_specify_permissions
    expect_open("/path/to/file", "r", 0765, :server_version => 6)
    assert_successful_open("/path/to/file", "r", :permissions => 0765)
  end

  def test_open_bang_should_block_and_return_handle
    expect_open("/path/to/file", "r", nil)
    handle = assert_synchronous_command(:open!, "/path/to/file", "r")
    assert_equal "handle", handle
  end

  def test_open_bang_should_block_and_raise_exception_on_error
    expect_open("/path/to/file", "r", nil, :fail => 5)
    assert_raises(Net::SFTP::StatusException) do
      assert_synchronous_command(:open!, "/path/to/file", "r")
    end
  end

  def test_close_should_send_close_request_and_invoke_callback
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_CLOSE, :long, 0, :string, "handle")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:close, "handle") { |r| assert r.ok? }
  end

  def test_close_bang_should_block_and_return_response
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_CLOSE, :long, 0, :string, "handle")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:close!, "handle")
    assert response.ok?
  end

  def test_read_should_send_read_request_and_invoke_callback
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_READ, :long, 0, :string, "handle", :int64, 512123, :long, 1024)
      channel.gets_packet(FXP_DATA, :long, 0, :string, "this is some data!")
    end

    assert_command_with_callback(:read, "handle", 512123, 1024) do |response|
      assert response.ok?
      assert_equal "this is some data!", response[:data]
    end
  end

  def test_read_bang_should_block_and_return_data
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_READ, :long, 0, :string, "handle", :int64, 512123, :long, 1024)
      channel.gets_packet(FXP_DATA, :long, 0, :string, "this is some data!")
    end

    data = assert_synchronous_command(:read!, "handle", 512123, 1024)
    assert_equal "this is some data!", data
  end

  def test_read_bang_should_block_and_return_nil_on_eof
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_READ, :long, 0, :string, "handle", :int64, 512123, :long, 1024)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 1)
    end

    data = assert_synchronous_command(:read!, "handle", 512123, 1024)
    assert_nil data
  end

  def test_write_should_send_write_request_and_invoke_callback
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_WRITE, :long, 0, :string, "handle", :int64, 512123, :string, "this is some data!")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:write, "handle", 512123, "this is some data!") do |response|
      assert response.ok?
    end
  end

  def test_write_bang_should_block_and_return_response
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_WRITE, :long, 0, :string, "handle", :int64, 512123, :string, "this is some data!")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:write!, "handle", 512123, "this is some data!")
    assert response.ok?
  end

  def test_v1_lstat_should_send_lstat_request_and_invoke_callback
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_LSTAT, :long, 0, :string, "/path/to/file")
      channel.gets_packet(FXP_ATTRS, :long, 0, :long, 0xF, :int64, 123456, :long, 1, :long, 2, :long, 0765, :long, 123456789, :long, 234567890)
    end

    assert_command_with_callback(:lstat, "/path/to/file") do |response|
      assert response.ok?
      assert_equal 123456, response[:attrs].size
      assert_equal 1, response[:attrs].uid
      assert_equal 2, response[:attrs].gid
      assert_equal 0765, response[:attrs].permissions
      assert_equal 123456789, response[:attrs].atime
      assert_equal 234567890, response[:attrs].mtime
    end
  end

  def test_v4_lstat_should_send_default_flags_parameter
    expect_sftp_session :server_version => 4 do |channel|
      channel.sends_packet(FXP_LSTAT, :long, 0, :string, "/path/to/file", :long, 0x800001fd)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 2)
    end

    assert_command_with_callback(:lstat, "/path/to/file")
  end

  def test_v4_lstat_should_honor_flags_parameter
    expect_sftp_session :server_version => 4 do |channel|
      channel.sends_packet(FXP_LSTAT, :long, 0, :string, "/path/to/file", :long, 0x1)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 2)
    end

    assert_command_with_callback(:lstat, "/path/to/file", 0x1)
  end

  def test_lstat_bang_should_block_and_return_attrs
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_LSTAT, :long, 0, :string, "/path/to/file")
      channel.gets_packet(FXP_ATTRS, :long, 0, :long, 0xF, :int64, 123456, :long, 1, :long, 2, :long, 0765, :long, 123456789, :long, 234567890)
    end

    attrs = assert_synchronous_command(:lstat!, "/path/to/file")

    assert_equal 123456, attrs.size
    assert_equal 1, attrs.uid
    assert_equal 2, attrs.gid
    assert_equal 0765, attrs.permissions
    assert_equal 123456789, attrs.atime
    assert_equal 234567890, attrs.mtime
  end

  def test_v1_fstat_should_send_fstat_request_and_invoke_callback
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_FSTAT, :long, 0, :string, "handle")
      channel.gets_packet(FXP_ATTRS, :long, 0, :long, 0xF, :int64, 123456, :long, 1, :long, 2, :long, 0765, :long, 123456789, :long, 234567890)
    end

    assert_command_with_callback(:fstat, "handle") do |response|
      assert response.ok?
      assert_equal 123456, response[:attrs].size
      assert_equal 1, response[:attrs].uid
      assert_equal 2, response[:attrs].gid
      assert_equal 0765, response[:attrs].permissions
      assert_equal 123456789, response[:attrs].atime
      assert_equal 234567890, response[:attrs].mtime
    end
  end

  def test_v4_fstat_should_send_default_flags_parameter
    expect_sftp_session :server_version => 4 do |channel|
      channel.sends_packet(FXP_FSTAT, :long, 0, :string, "handle", :long, 0x800001fd)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 2)
    end

    assert_command_with_callback(:fstat, "handle")
  end

  def test_v4_fstat_should_honor_flags_parameter
    expect_sftp_session :server_version => 4 do |channel|
      channel.sends_packet(FXP_FSTAT, :long, 0, :string, "handle", :long, 0x1)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 2)
    end

    assert_command_with_callback(:fstat, "handle", 0x1)
  end

  def test_fstat_bang_should_block_and_return_attrs
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_FSTAT, :long, 0, :string, "handle")
      channel.gets_packet(FXP_ATTRS, :long, 0, :long, 0xF, :int64, 123456, :long, 1, :long, 2, :long, 0765, :long, 123456789, :long, 234567890)
    end

    attrs = assert_synchronous_command(:fstat!, "handle")

    assert_equal 123456, attrs.size
    assert_equal 1, attrs.uid
    assert_equal 2, attrs.gid
    assert_equal 0765, attrs.permissions
    assert_equal 123456789, attrs.atime
    assert_equal 234567890, attrs.mtime
  end

  def test_v1_setstat_should_send_v1_attributes
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_SETSTAT, :long, 0, :string, "/path/to/file", :long, 0xc, :long, 0765, :long, 1234567890, :long, 2345678901)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:setstat, "/path/to/file", :permissions => 0765, :atime => 1234567890, :mtime => 2345678901)
  end

  def test_v4_setstat_should_send_v4_attributes
    expect_sftp_session :server_version => 4 do |channel|
      channel.sends_packet(FXP_SETSTAT, :long, 0, :string, "/path/to/file", :long, 0x2c, :byte, 1, :long, 0765, :int64, 1234567890, :int64, 2345678901)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:setstat, "/path/to/file", :permissions => 0765, :atime => 1234567890, :mtime => 2345678901)
  end

  def test_v6_setstat_should_send_v6_attributes
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_SETSTAT, :long, 0, :string, "/path/to/file", :long, 0x102c, :byte, 1, :long, 0765, :int64, 1234567890, :int64, 2345678901, :string, "text/plain")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:setstat, "/path/to/file", :permissions => 0765, :atime => 1234567890, :mtime => 2345678901, :mime_type => "text/plain")
  end

  def test_setstat_bang_should_block_and_return_response
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_SETSTAT, :long, 0, :string, "/path/to/file", :long, 0xc, :long, 0765, :long, 1234567890, :long, 2345678901)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:setstat!, "/path/to/file", :permissions => 0765, :atime => 1234567890, :mtime => 2345678901)
    assert response.ok?
  end

  def test_v1_fsetstat_should_send_v1_attributes
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_FSETSTAT, :long, 0, :string, "handle", :long, 0xc, :long, 0765, :long, 1234567890, :long, 2345678901)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:fsetstat, "handle", :permissions => 0765, :atime => 1234567890, :mtime => 2345678901)
  end

  def test_v4_fsetstat_should_send_v4_attributes
    expect_sftp_session :server_version => 4 do |channel|
      channel.sends_packet(FXP_FSETSTAT, :long, 0, :string, "handle", :long, 0x2c, :byte, 1, :long, 0765, :int64, 1234567890, :int64, 2345678901)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:fsetstat, "handle", :permissions => 0765, :atime => 1234567890, :mtime => 2345678901)
  end

  def test_v6_fsetstat_should_send_v6_attributes
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_FSETSTAT, :long, 0, :string, "handle", :long, 0x102c, :byte, 1, :long, 0765, :int64, 1234567890, :int64, 2345678901, :string, "text/plain")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:fsetstat, "handle", :permissions => 0765, :atime => 1234567890, :mtime => 2345678901, :mime_type => "text/plain")
  end

  def test_fsetstat_bang_should_block_and_return_response
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_FSETSTAT, :long, 0, :string, "handle", :long, 0xc, :long, 0765, :long, 1234567890, :long, 2345678901)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:fsetstat!, "handle", :permissions => 0765, :atime => 1234567890, :mtime => 2345678901)
    assert response.ok?
  end

  def test_opendir_should_send_opendir_request_and_invoke_callback
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_OPENDIR, :long, 0, :string, "/path/to/dir")
      channel.gets_packet(FXP_HANDLE, :long, 0, :string, "handle")
    end

    assert_command_with_callback(:opendir, "/path/to/dir")
  end

  def test_opendir_bang_should_block_and_return_handle
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_OPENDIR, :long, 0, :string, "/path/to/dir")
      channel.gets_packet(FXP_HANDLE, :long, 0, :string, "handle")
    end

    handle = assert_synchronous_command(:opendir!, "/path/to/dir")
    assert_equal "handle", handle
  end

  def test_readdir_should_send_readdir_request_and_invoke_callback
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_READDIR, :long, 0, :string, "handle")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 1)
    end

    assert_command_with_callback(:readdir, "handle") { |r| assert r.eof? }
  end

  def test_readdir_bang_should_block_and_return_names_array
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_READDIR, :long, 0, :string, "handle")
      channel.gets_packet(FXP_NAME, :long, 0, :long, 2,
        :string, "first", :string, "longfirst", :long, 0x0,
        :string, "next", :string, "longnext", :long, 0x0)
    end

    names = assert_synchronous_command(:readdir!, "handle")
    assert_equal 2, names.length
    assert_equal %w(first next), names.map { |n| n.name }
  end

  def test_remove_should_send_remove_packet
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_REMOVE, :long, 0, :string, "/path/to/file")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:remove, "/path/to/file")
  end

  def test_remove_bang_should_block_and_return_response
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_REMOVE, :long, 0, :string, "/path/to/file")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:remove!, "/path/to/file")
    assert response.ok?
  end

  def test_mkdir_should_send_mkdir_packet
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_MKDIR, :long, 0, :string, "/path/to/dir", :long, 0x4, :byte, 1, :long, 0765)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:mkdir, "/path/to/dir", :permissions => 0765)
  end

  def test_mkdir_bang_should_block_and_return_response
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_MKDIR, :long, 0, :string, "/path/to/dir", :long, 0x4, :byte, 1, :long, 0765)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:mkdir!, "/path/to/dir", :permissions => 0765)
    assert response.ok?
  end

  def test_rmdir_should_send_rmdir_packet
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_RMDIR, :long, 0, :string, "/path/to/dir")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:rmdir, "/path/to/dir")
  end

  def test_rmdir_bang_should_block_and_return_response
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_RMDIR, :long, 0, :string, "/path/to/dir")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:rmdir!, "/path/to/dir")
    assert response.ok?
  end

  def test_realpath_should_send_realpath_packet
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_REALPATH, :long, 0, :string, "/path/to/dir")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 2)
    end

    assert_command_with_callback(:realpath, "/path/to/dir")
  end

  def test_realpath_bang_should_block_and_return_names_item
    expect_sftp_session do |channel|
      channel.sends_packet(FXP_REALPATH, :long, 0, :string, "/path/to/dir")
      channel.gets_packet(FXP_NAME, :long, 0, :long, 1, :string, "dir", :long, 0x0, :long, 2)
    end

    name = assert_synchronous_command(:realpath!, "/path/to/dir")
    assert_equal "dir", name.name
  end

  def test_v1_stat_should_send_stat_request_and_invoke_callback
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_STAT, :long, 0, :string, "/path/to/file")
      channel.gets_packet(FXP_ATTRS, :long, 0, :long, 0xF, :int64, 123456, :long, 1, :long, 2, :long, 0765, :long, 123456789, :long, 234567890)
    end

    assert_command_with_callback(:stat, "/path/to/file") do |response|
      assert response.ok?
      assert_equal 123456, response[:attrs].size
      assert_equal 1, response[:attrs].uid
      assert_equal 2, response[:attrs].gid
      assert_equal 0765, response[:attrs].permissions
      assert_equal 123456789, response[:attrs].atime
      assert_equal 234567890, response[:attrs].mtime
    end
  end

  def test_v4_stat_should_send_default_flags_parameter
    expect_sftp_session :server_version => 4 do |channel|
      channel.sends_packet(FXP_STAT, :long, 0, :string, "/path/to/file", :long, 0x800001fd)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 2)
    end

    assert_command_with_callback(:stat, "/path/to/file")
  end

  def test_v4_stat_should_honor_flags_parameter
    expect_sftp_session :server_version => 4 do |channel|
      channel.sends_packet(FXP_STAT, :long, 0, :string, "/path/to/file", :long, 0x1)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 2)
    end

    assert_command_with_callback(:stat, "/path/to/file", 0x1)
  end

  def test_stat_bang_should_block_and_return_attrs
    expect_sftp_session :server_version => 1 do |channel|
      channel.sends_packet(FXP_STAT, :long, 0, :string, "/path/to/file")
      channel.gets_packet(FXP_ATTRS, :long, 0, :long, 0xF, :int64, 123456, :long, 1, :long, 2, :long, 0765, :long, 123456789, :long, 234567890)
    end

    attrs = assert_synchronous_command(:stat!, "/path/to/file")

    assert_equal 123456, attrs.size
    assert_equal 1, attrs.uid
    assert_equal 2, attrs.gid
    assert_equal 0765, attrs.permissions
    assert_equal 123456789, attrs.atime
    assert_equal 234567890, attrs.mtime
  end

  def test_v1_rename_should_be_unimplemented
    assert_not_implemented 1, :rename, "from", "to"
  end

  def test_v2_rename_should_send_rename_packet
    expect_sftp_session :server_version => 2 do |channel|
      channel.sends_packet(FXP_RENAME, :long, 0, :string, "from", :string, "to")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:rename, "from", "to")
  end

  def test_v5_rename_should_send_rename_packet_and_default_flags
    expect_sftp_session :server_version => 5 do |channel|
      channel.sends_packet(FXP_RENAME, :long, 0, :string, "from", :string, "to", :long, 0)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:rename, "from", "to")
  end

  def test_v5_rename_should_send_rename_packet_and_honor_flags
    expect_sftp_session :server_version => 5 do |channel|
      channel.sends_packet(FXP_RENAME, :long, 0, :string, "from", :string, "to", :long, 1)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:rename, "from", "to", 1)
  end

  def test_rename_bang_should_block_and_return_response
    expect_sftp_session :server_version => 2 do |channel|
      channel.sends_packet(FXP_RENAME, :long, 0, :string, "from", :string, "to")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:rename!, "from", "to")
    assert response.ok?
  end

  def test_v2_readlink_should_be_unimplemented
    assert_not_implemented 2, :readlink, "/path/to/link"
  end

  def test_v3_readlink_should_send_readlink_packet
    expect_sftp_session :server_version => 3 do |channel|
      channel.sends_packet(FXP_READLINK, :long, 0, :string, "/path/to/link")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 2)
    end

    assert_command_with_callback(:readlink, "/path/to/link")
  end

  def test_readlink_bang_should_block_and_return_name
    expect_sftp_session :server_version => 3 do |channel|
      channel.sends_packet(FXP_READLINK, :long, 0, :string, "/path/to/link")
      channel.gets_packet(FXP_NAME, :long, 0, :long, 1, :string, "target", :string, "longtarget", :long, 0x0)
    end

    name = assert_synchronous_command(:readlink!, "/path/to/link")
    assert_equal "target", name.name
  end

  def test_v2_symlink_should_be_unimplemented
    assert_not_implemented 2, :symlink, "/path/to/source", "/path/to/link"
  end

  def test_v3_symlink_should_send_symlink_packet
    expect_sftp_session :server_version => 3 do |channel|
      channel.sends_packet(FXP_SYMLINK, :long, 0, :string, "/path/to/source", :string, "/path/to/link")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:symlink, "/path/to/source", "/path/to/link")
  end

  def test_v6_symlink_should_send_link_packet
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_LINK, :long, 0, :string, "/path/to/link", :string, "/path/to/source", :bool, true)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:symlink, "/path/to/link", "/path/to/source")
  end

  def test_symlink_bang_should_block_and_return_response
    expect_sftp_session :server_version => 3 do |channel|
      channel.sends_packet(FXP_SYMLINK, :long, 0, :string, "/path/to/source", :string, "/path/to/link")
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:symlink!, "/path/to/source", "/path/to/link")
    assert response.ok?
  end

  def test_v5_link_should_be_unimplemented
    assert_not_implemented 5, :link, "/path/to/source", "/path/to/link", true
  end

  def test_v6_link_should_send_link_packet
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_LINK, :long, 0, :string, "/path/to/link", :string, "/path/to/source", :bool, true)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:link, "/path/to/link", "/path/to/source", true)
  end

  def test_link_bang_should_block_and_return_response
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_LINK, :long, 0, :string, "/path/to/link", :string, "/path/to/source", :bool, true)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:link!, "/path/to/link", "/path/to/source", true)
    assert response.ok?
  end

  def test_v5_block_should_be_unimplemented
    assert_not_implemented 5, :block, "handle", 12345, 67890, 0xabcd
  end

  def test_v6_block_should_send_block_packet
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_BLOCK, :long, 0, :string, "handle", :int64, 12345, :int64, 67890, :long, 0xabcd)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:block, "handle", 12345, 67890, 0xabcd)
  end

  def test_block_bang_should_block_and_return_response
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_BLOCK, :long, 0, :string, "handle", :int64, 12345, :int64, 67890, :long, 0xabcd)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:block!, "handle", 12345, 67890, 0xabcd)
    assert response.ok?
  end

  def test_v5_unblock_should_be_unimplemented
    assert_not_implemented 5, :unblock, "handle", 12345, 67890
  end

  def test_v6_unblock_should_send_block_packet
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_UNBLOCK, :long, 0, :string, "handle", :int64, 12345, :int64, 67890)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    assert_command_with_callback(:unblock, "handle", 12345, 67890)
  end

  def test_unblock_bang_should_block_and_return_response
    expect_sftp_session :server_version => 6 do |channel|
      channel.sends_packet(FXP_UNBLOCK, :long, 0, :string, "handle", :int64, 12345, :int64, 67890)
      channel.gets_packet(FXP_STATUS, :long, 0, :long, 0)
    end

    response = assert_synchronous_command(:unblock!, "handle", 12345, 67890)
    assert response.ok?
  end

  private

    def assert_not_implemented(server_version, command, *args)
      expect_sftp_session :server_version => 1
      sftp.connect!
      assert_raises(NotImplementedError) { sftp.send(command, *args) }
    end

    def assert_command_with_callback(command, *args)
      called = false
      assert_scripted_command do
        sftp.send(command, *args) do |response|
          called = true
          yield response if block_given?
        end
      end
      assert called, "expected callback to be invoked, but it wasn't"
    end

    def assert_synchronous_command(command, *args)
      assert_scripted_command do
        sequence = [:start]
        result = sftp.send(command, *args) do |response|
          sequence << :done
          yield response if block_given?
        end
        sequence << :after
        assert_equal [:start, :done, :after], sequence, "expected #{command} to be synchronous"
        return result
      end
    end

    def assert_successful_open(*args)
      assert_command_with_callback(:open, *args) do |response|
        assert response.ok?
        assert_equal "handle", response[:handle]
      end
    end

    def expect_open(path, mode, perms, options={})
      version = options[:server_version] || 6

      fail = options.delete(:fail)

      attrs = [:long, perms ? 0x4 : 0]
      attrs += [:byte, 1] if version >= 4
      attrs += [:long, perms] if perms

      expect_sftp_session(options) do |channel|
        if version >= 5
          flags, access = case mode
            when "r" then 
              [FV5::OPEN_EXISTING, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES]
            when "w" then
              [FV5::CREATE_TRUNCATE, ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES]
            when "rw" then
              [FV5::OPEN_OR_CREATE, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES | ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES]
            when "a" then
              [FV5::OPEN_OR_CREATE | FV5::APPEND_DATA, ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES | ACE::Mask::APPEND_DATA]
            else raise ArgumentError, "unsupported mode #{mode.inspect}"
          end

          channel.sends_packet(FXP_OPEN, :long, 0, :string, path, :long, access, :long, flags, *attrs)
        else
          flags = case mode
            when "r"  then FV1::READ
            when "w"  then FV1::WRITE | FV1::TRUNC | FV1::CREAT
            when "rw" then FV1::WRITE | FV1::READ
            when "a"  then FV1::APPEND | FV1::WRITE | FV1::CREAT
            else raise ArgumentError, "unsupported mode #{mode.inspect}"
          end

          channel.sends_packet(FXP_OPEN, :long, 0, :string, path, :long, flags, *attrs)
        end

        if fail
          channel.gets_packet(FXP_STATUS, :long, 0, :long, fail)
        else
          channel.gets_packet(FXP_HANDLE, :long, 0, :string, "handle")
        end
      end
    end
end