aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/exp/ssh/transport_test.go
blob: b2e2a7fc92aa6587a978fe637c1566492cbb788b (plain)
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
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package ssh

import (
	"bufio"
	"bytes"
	"testing"
)

func TestReadVersion(t *testing.T) {
	buf := []byte(serverVersion)
	result, err := readVersion(bufio.NewReader(bytes.NewBuffer(buf)))
	if err != nil {
		t.Errorf("readVersion didn't read version correctly: %s", err)
	}
	if !bytes.Equal(buf[:len(buf)-2], result) {
		t.Error("version read did not match expected")
	}
}

func TestReadVersionTooLong(t *testing.T) {
	buf := make([]byte, maxVersionStringBytes+1)
	if _, err := readVersion(bufio.NewReader(bytes.NewBuffer(buf))); err == nil {
		t.Errorf("readVersion consumed %d bytes without error", len(buf))
	}
}

func TestReadVersionWithoutCRLF(t *testing.T) {
	buf := []byte(serverVersion)
	buf = buf[:len(buf)-1]
	if _, err := readVersion(bufio.NewReader(bytes.NewBuffer(buf))); err == nil {
		t.Error("readVersion did not notice \\n was missing")
	}
}