mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package configs
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeNode/internal/configs/serverconfigs"
 | 
						|
	_ "github.com/iwind/TeaGo/bootstrap"
 | 
						|
	"github.com/iwind/TeaGo/logs"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestSharedNodeConfig(t *testing.T) {
 | 
						|
	{
 | 
						|
		config, err := SharedNodeConfig()
 | 
						|
		if err != nil {
 | 
						|
			t.Fatal(err)
 | 
						|
		}
 | 
						|
		t.Log(config)
 | 
						|
	}
 | 
						|
 | 
						|
	// read from memory cache
 | 
						|
	{
 | 
						|
		config, err := SharedNodeConfig()
 | 
						|
		if err != nil {
 | 
						|
			t.Fatal(err)
 | 
						|
		}
 | 
						|
		t.Log(config)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestNodeConfig_Groups(t *testing.T) {
 | 
						|
	config := &NodeConfig{}
 | 
						|
	config.Servers = []*serverconfigs.ServerConfig{
 | 
						|
		{
 | 
						|
			IsOn: true,
 | 
						|
			HTTP: &serverconfigs.HTTPProtocolConfig{
 | 
						|
				BaseProtocol: serverconfigs.BaseProtocol{
 | 
						|
					IsOn: true,
 | 
						|
					Listen: []*serverconfigs.NetworkAddressConfig{
 | 
						|
						{
 | 
						|
							Protocol:  serverconfigs.ProtocolHTTP,
 | 
						|
							Host:      "127.0.0.1",
 | 
						|
							PortRange: "1234",
 | 
						|
						},
 | 
						|
						{
 | 
						|
							Protocol:  serverconfigs.ProtocolHTTP,
 | 
						|
							PortRange: "8080",
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		{
 | 
						|
			HTTP: &serverconfigs.HTTPProtocolConfig{
 | 
						|
				BaseProtocol: serverconfigs.BaseProtocol{
 | 
						|
					IsOn: true,
 | 
						|
					Listen: []*serverconfigs.NetworkAddressConfig{
 | 
						|
						{
 | 
						|
							Protocol:  serverconfigs.ProtocolHTTP,
 | 
						|
							PortRange: "8080",
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
	logs.PrintAsJSON(config.AvailableGroups(), t)
 | 
						|
}
 |