mirror of
				https://git.zx2c4.com/wireguard-go
				synced 2025-10-31 03:46:20 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			888 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			888 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0
 | |
|  *
 | |
|  * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
 | |
|  */
 | |
| 
 | |
| 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())
 | |
| 	}
 | |
| 
 | |
| 	println(tun1)
 | |
| 	println(tun2)
 | |
| 
 | |
| 	// 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())
 | |
| 	}
 | |
| 
 | |
| 	println(end1)
 | |
| 	println(end2)
 | |
| 
 | |
| 	// create binds
 | |
| 
 | |
| }
 | 
