2018-05-03 15:04:00 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
2018-05-19 00:34:56 +02:00
|
|
|
* Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>.
|
2018-05-03 15:04:00 +02:00
|
|
|
*/
|
|
|
|
|
2018-03-08 16:44:27 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
/* Create two device instances and simulate full WireGuard interaction
|
|
|
|
* without network dependencies
|
|
|
|
*/
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
func TestDevice(t *testing.T) {
|
|
|
|
|
|
|
|
// prepare tun devices for generating traffic
|
|
|
|
|
|
|
|
tun1, err := CreateDummyTUN("tun1")
|
|
|
|
if err != nil {
|
|
|
|
t.Error("failed to create tun:", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
tun2, err := CreateDummyTUN("tun2")
|
|
|
|
if err != nil {
|
|
|
|
t.Error("failed to create tun:", err.Error())
|
|
|
|
}
|
|
|
|
|
2018-05-21 05:18:25 +02:00
|
|
|
_ = tun1
|
|
|
|
_ = tun2
|
2018-03-08 16:44:27 +01:00
|
|
|
|
|
|
|
// prepare endpoints
|
|
|
|
|
|
|
|
end1, err := CreateDummyEndpoint()
|
|
|
|
if err != nil {
|
|
|
|
t.Error("failed to create endpoint:", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
end2, err := CreateDummyEndpoint()
|
|
|
|
if err != nil {
|
|
|
|
t.Error("failed to create endpoint:", err.Error())
|
|
|
|
}
|
|
|
|
|
2018-05-21 05:18:25 +02:00
|
|
|
_ = end1
|
|
|
|
_ = end2
|
2018-03-08 16:44:27 +01:00
|
|
|
|
|
|
|
// create binds
|
|
|
|
|
|
|
|
}
|