haskell-ssh icon indicating copy to clipboard operation
haskell-ssh copied to clipboard

hssh-0.1.0.0 test suite fails

Open peti opened this issue 4 years ago • 0 comments

Citing from https://hydra.nixos.org/build/138211884:

  Network.SSH.Server.Service.Connection
    open one session channel (no handler, expect rejection):                                OK
    open one session channel (with handler):                                                OK
    open two session channels (with handler):                                               OK (0.02s)
    open two session channels (exceed limit):                                               OK
    open two session channels (close first, reuse first):                                   OK
    open unknown channel type:                                                              OK
    close non-existing channel id:                                                          OK
    close channel (don't reuse unless acknowledged):                                        OK
    close channel (reuse when acknowledged):                                                OK
    channel requests
      reject unknown / unimplemented requests:                                              OK
      session channel requests
        env request:                                                                        OK
        pty request:                                                                        OK
        shell requests
          handler exits with 0:                                                             OK
          handler exits with 1:                                                             OK
          handler exits with 0 after writing to stdout:                                     OK
          handler exits with 0 after writing to stderr:                                     OK
          handler exits with 0 after echoing stdin to stdout:                               OK
          handler throws exception:                                                         OK
          handler running while closed by client:                                           OK (0.02s)
        channel data
          honor remote max packet size:                                                     OK
          throw exception if local maxPacketSize is exeeded:                                OK
          throw exception if remote sends data after eof:                                   OK
        flow control
          adjust inbound window when < 50% and capacity available:                          OK
          throw exception on inbound window size underrun:                                  OK (0.02s)
          honor outbound window size and adjustment:                                        OK (0.02s)
          remote adjusts window size to maximum:                                            FAIL
            Exception: Disconnect Local DisconnectProtocolError (DisconnectMessage "unexpected message type 093")
          throw exception if remote adjusts window size to (maximum + 1):                   OK

peti avatar Mar 05 '21 20:03 peti