aboutsummaryrefslogtreecommitdiffstats
path: root/device/tun_test.go
blob: 5614771c42272aab5b82da548fdf2ce3d5743ee5 (plain) (blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
 */

package device

import (
	"errors"
	"os"

	"golang.zx2c4.com/wireguard/tun"
)

// newDummyTUN creates a dummy TUN device with the specified name.
func newDummyTUN(name string) tun.Device {
	return &dummyTUN{
		name:    name,
		packets: make(chan []byte, 100),
		events:  make(chan tun.Event, 10),
	}
}

// A dummyTUN is a tun.Device which is used in unit tests.
type dummyTUN struct {
	name    string
	mtu     int
	packets chan []byte
	events  chan tun.Event
}

func (d *dummyTUN) Events() chan tun.Event { return d.events }
func (*dummyTUN) File() *os.File           { return nil }
func (*dummyTUN) Flush() error             { return nil }
func (d *dummyTUN) MTU() (int, error)      { return d.mtu, nil }
func (d *dummyTUN) Name() (string, error)  { return d.name, nil }

func (d *dummyTUN) Close() error {
	close(d.events)
	close(d.packets)
	return nil
}

func (d *dummyTUN) Read(b []byte, offset int) (int, error) {
	buf, ok := <-d.packets
	if !ok {
		return 0, errors.New("device closed")
	}
	copy(b[offset:], buf)
	return len(buf), nil
}

func (d *dummyTUN) Write(b []byte, offset int) (int, error) {
	d.packets <- b[offset:]
	return len(b), nil
}