]> Cypherpunks.ru repositories - nncp.git/blob - src/tx_test.go
Operations progress
[nncp.git] / src / tx_test.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2019 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, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package nncp
19
20 import (
21         "bytes"
22         "io"
23         "io/ioutil"
24         "os"
25         "path"
26         "strings"
27         "testing"
28         "testing/quick"
29
30         xdr "github.com/davecgh/go-xdr/xdr2"
31         "golang.org/x/crypto/blake2b"
32 )
33
34 func TestTx(t *testing.T) {
35         f := func(hops uint8, pathSrc, data string, nice, replyNice uint8, padSize int16) bool {
36                 if len(pathSrc) > int(MaxPathSize) {
37                         pathSrc = pathSrc[:MaxPathSize]
38                 }
39                 hops = hops % 4
40                 hops = 1
41                 spool, err := ioutil.TempDir("", "testtx")
42                 if err != nil {
43                         panic(err)
44                 }
45                 defer os.RemoveAll(spool)
46                 nodeOur, err := NewNodeGenerate()
47                 if err != nil {
48                         panic(err)
49                 }
50                 nodeTgtOur, err := NewNodeGenerate()
51                 if err != nil {
52                         panic(err)
53                 }
54                 nodeTgt := nodeTgtOur.Their()
55                 ctx := Ctx{
56                         Spool:   spool,
57                         LogPath: path.Join(spool, "log.log"),
58                         Debug:   true,
59                         Self:    nodeOur,
60                         SelfId:  nodeOur.Id,
61                         Neigh:   make(map[NodeId]*Node, hops),
62                         Alias:   make(map[string]*NodeId),
63                 }
64                 ctx.Neigh[*nodeOur.Id] = nodeOur.Their()
65                 ctx.Neigh[*nodeTgt.Id] = nodeTgt
66                 privates := make(map[NodeId]*NodeOur, int(hops)+1)
67                 privates[*nodeTgt.Id] = nodeTgtOur
68                 privates[*nodeOur.Id] = nodeOur
69                 for i := uint8(0); i < hops; i++ {
70                         node, err := NewNodeGenerate()
71                         if err != nil {
72                                 panic(err)
73                         }
74                         ctx.Neigh[*node.Id] = node.Their()
75                         privates[*node.Id] = node
76                         nodeTgt.Via = append(nodeTgt.Via, node.Id)
77                 }
78                 pkt, err := NewPkt(PktTypeExec, replyNice, []byte(pathSrc))
79                 src := strings.NewReader(data)
80                 dstNode, err := ctx.Tx(
81                         nodeTgt,
82                         pkt,
83                         123,
84                         int64(src.Len()),
85                         int64(padSize),
86                         src,
87                         "pktName",
88                 )
89                 if err != nil {
90                         return false
91                 }
92
93                 sentJobs := make([]Job, 0, 1)
94                 for txJob := range ctx.Jobs(dstNode.Id, TTx) {
95                         sentJobs = append(sentJobs, txJob)
96                 }
97                 if len(sentJobs) != 1 {
98                         return false
99                 }
100                 txJob := sentJobs[0]
101                 defer txJob.Fd.Close()
102                 var bufR bytes.Buffer
103                 if _, err = io.Copy(&bufR, txJob.Fd); err != nil {
104                         panic(err)
105                 }
106                 var bufW bytes.Buffer
107                 vias := append(nodeTgt.Via, nodeTgt.Id)
108                 for i, hopId := range vias {
109                         hopOur := privates[*hopId]
110                         foundNode, _, err := PktEncRead(hopOur, ctx.Neigh, &bufR, &bufW)
111                         if err != nil {
112                                 return false
113                         }
114                         if *foundNode.Id != *nodeOur.Id {
115                                 return false
116                         }
117                         bufR, bufW = bufW, bufR
118                         bufW.Reset()
119                         var pkt Pkt
120                         if _, err = xdr.Unmarshal(&bufR, &pkt); err != nil {
121                                 return false
122                         }
123                         if *hopId == *nodeTgt.Id {
124                                 if pkt.Type != PktTypeExec {
125                                         return false
126                                 }
127                                 if pkt.Nice != replyNice {
128                                         return false
129                                 }
130                                 if !bytes.HasPrefix(pkt.Path[:], []byte(pathSrc)) {
131                                         return false
132                                 }
133                                 if bytes.Compare(bufR.Bytes(), []byte(data)) != 0 {
134                                         return false
135                                 }
136                         } else {
137                                 if pkt.Type != PktTypeTrns {
138                                         return false
139                                 }
140                                 if bytes.Compare(pkt.Path[:blake2b.Size256], vias[i+1][:]) != 0 {
141                                         return false
142                                 }
143                         }
144                 }
145                 return true
146         }
147         if err := quick.Check(f, nil); err != nil {
148                 t.Error(err)
149         }
150 }