]> Cypherpunks.ru repositories - govpn.git/blobdiff - src/govpn/peer_test.go
Initial encryptionless mode support
[govpn.git] / src / govpn / peer_test.go
index 9bad8c6960a792c1ca41b766289188aa977dc1a0..4e6f5879e5596ab72a01fc071927e39df932be2d 100644 (file)
@@ -1,7 +1,26 @@
+/*
+GoVPN -- simple secure free software virtual private network daemon
+Copyright (C) 2014-2016 Sergey Matveev <stargrave@stargrave.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
 package govpn
 
 import (
        "testing"
+       "testing/quick"
        "time"
 )
 
@@ -26,17 +45,52 @@ func (d Dummy) Write(b []byte) (int, error) {
 
 func init() {
        MTU = 1500
-       peerId, _ = IDDecode("ffffffffffffffffffffffffffffffff")
+       id := new([IDSize]byte)
+       peerId := PeerId(*id)
        conf = &PeerConf{
-               Id:          peerId,
-               Timeout:     time.Second * time.Duration(TimeoutDefault),
-               NoiseEnable: false,
-               CPR:         0,
+               Id:      &peerId,
+               Timeout: time.Second * time.Duration(TimeoutDefault),
+               Noise:   false,
+               CPR:     0,
        }
        peer = newPeer(true, "foo", Dummy{&ciphertext}, conf, new([SSize]byte))
        plaintext = make([]byte, 789)
 }
 
+func TestSymmetric(t *testing.T) {
+       peerd := newPeer(true, "foo", Dummy{nil}, conf, new([SSize]byte))
+       f := func(payload []byte) bool {
+               if len(payload) == 0 {
+                       return true
+               }
+               peer.EthProcess(payload)
+               return peerd.PktProcess(ciphertext, Dummy{nil}, true)
+       }
+       if err := quick.Check(f, nil); err != nil {
+               t.Error(err)
+       }
+}
+
+func TestSymmetricEncLess(t *testing.T) {
+       peerd := newPeer(true, "foo", Dummy{nil}, conf, new([SSize]byte))
+       peer.NoiseEnable = true
+       peer.EncLess = true
+       peerd.EncLess = true
+       peerd.NoiseEnable = true
+       f := func(payload []byte) bool {
+               if len(payload) == 0 {
+                       return true
+               }
+               peer.EthProcess(payload)
+               return peerd.PktProcess(ciphertext, Dummy{nil}, true)
+       }
+       if err := quick.Check(f, nil); err != nil {
+               t.Error(err)
+       }
+       peer.NoiseEnable = false
+       peer.EncLess = false
+}
+
 func BenchmarkEnc(b *testing.B) {
        b.ResetTimer()
        for i := 0; i < b.N; i++ {