quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

test1233 (668B)


      1 <testcase>
      2 <info>
      3 <keywords>
      4 FTP
      5 connect to non-listen
      6 </keywords>
      7 </info>
      8 
      9 # Server-side
     10 <reply>
     11 <servercmd>
     12 # Assuming there's nothing listening on port 1
     13 REPLY EPSV 229 Entering Passiv Mode (|||1|)
     14 </servercmd>
     15 <data>
     16 here are some bytes
     17 </data>
     18 </reply>
     19 
     20 # Client-side
     21 <client>
     22 <server>
     23 ftp
     24 </server>
     25 <name>
     26 FTP failing to connect to EPSV port, switching to PASV
     27 </name>
     28 <command>
     29 ftp://%HOSTIP:%FTPPORT/%TESTNUMBER
     30 </command>
     31 </client>
     32 
     33 # Verify data after the test has been "shot"
     34 <verify>
     35 <strip>
     36 QUIT
     37 </strip>
     38 <protocol>
     39 USER anonymous
     40 PASS ftp@example.com
     41 PWD
     42 EPSV
     43 PASV
     44 TYPE I
     45 SIZE %TESTNUMBER
     46 RETR %TESTNUMBER
     47 QUIT
     48 </protocol>
     49 </verify>
     50 </testcase>