]> Cypherpunks.ru repositories - goircd.git/blob - common_test.go
ISON command support
[goircd.git] / common_test.go
1 /*
2 goircd -- minimalistic simple Internet Relay Chat (IRC) server
3 Copyright (C) 2014-2015 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package main
20
21 import (
22         "net"
23         "time"
24 )
25
26 // Testing network connection that satisfies net.Conn interface
27 // Can send predefined messages and store all written ones
28 type TestingConn struct {
29         inbound  chan string
30         outbound chan string
31         closed   bool
32 }
33
34 func NewTestingConn() *TestingConn {
35         inbound := make(chan string, 8)
36         outbound := make(chan string, 8)
37         return &TestingConn{inbound: inbound, outbound: outbound}
38 }
39
40 func (conn TestingConn) Error() string {
41         return "i am finished"
42 }
43
44 func (conn *TestingConn) Read(b []byte) (n int, err error) {
45         msg := <-conn.inbound
46         if msg == "" {
47                 return 0, conn
48         }
49         for n, bt := range append([]byte(msg), CRLF...) {
50                 b[n] = bt
51         }
52         return len(msg) + 2, nil
53 }
54
55 type MyAddr struct{}
56
57 func (a MyAddr) String() string {
58         return "someclient"
59 }
60 func (a MyAddr) Network() string {
61         return "somenet"
62 }
63
64 func (conn *TestingConn) Write(b []byte) (n int, err error) {
65         conn.outbound <- string(b)
66         return len(b), nil
67 }
68
69 func (conn *TestingConn) Close() error {
70         conn.closed = true
71         close(conn.outbound)
72         return nil
73 }
74
75 func (conn TestingConn) LocalAddr() net.Addr {
76         return nil
77 }
78
79 func (conn TestingConn) RemoteAddr() net.Addr {
80         return MyAddr{}
81 }
82
83 func (conn TestingConn) SetDeadline(t time.Time) error {
84         return nil
85 }
86
87 func (conn TestingConn) SetReadDeadline(t time.Time) error {
88         return nil
89 }
90
91 func (conn TestingConn) SetWriteDeadline(t time.Time) error {
92         return nil
93 }