Explorar el Código

update test code

V2Ray hace 10 años
padre
commit
b22f306a3d
Se han modificado 1 ficheros con 14 adiciones y 13 borrados
  1. 14 13
      config/json/json_test.go

+ 14 - 13
config/json/json_test.go

@@ -16,15 +16,15 @@ func TestClientSampleConfig(t *testing.T) {
 	config, err := LoadConfig(filepath.Join(baseDir, "vpoint_socks_vmess.json"))
 	assert.Error(err).IsNil()
 
-	assert.Uint16(config.PortValue).Positive()
-	assert.Pointer(config.InboundConfigValue).IsNotNil()
-	assert.Pointer(config.OutboundConfigValue).IsNotNil()
+	assert.Uint16(config.Port()).Positive()
+	assert.Pointer(config.InboundConfig()).IsNotNil()
+	assert.Pointer(config.OutboundConfig()).IsNotNil()
 
-	assert.String(config.InboundConfigValue.ProtocolString).Equals("socks")
-	assert.Int(len(config.InboundConfigValue.Content())).GreaterThan(0)
+	assert.String(config.InboundConfig().Protocol()).Equals("socks")
+	assert.Int(len(config.InboundConfig().Content())).GreaterThan(0)
 
-	assert.String(config.OutboundConfigValue.ProtocolString).Equals("vmess")
-	assert.Int(len(config.OutboundConfigValue.Content())).GreaterThan(0)
+	assert.String(config.OutboundConfig().Protocol()).Equals("vmess")
+	assert.Int(len(config.OutboundConfig().Content())).GreaterThan(0)
 }
 
 func TestServerSampleConfig(t *testing.T) {
@@ -36,12 +36,13 @@ func TestServerSampleConfig(t *testing.T) {
 	config, err := LoadConfig(filepath.Join(baseDir, "vpoint_vmess_freedom.json"))
 	assert.Error(err).IsNil()
 
-	assert.Uint16(config.PortValue).Positive()
-	assert.Pointer(config.InboundConfigValue).IsNotNil()
-	assert.Pointer(config.OutboundConfigValue).IsNotNil()
+	assert.Uint16(config.Port()).Positive()
+	assert.Pointer(config.InboundConfig()).IsNotNil()
+	assert.Pointer(config.OutboundConfig()).IsNotNil()
 
-	assert.String(config.InboundConfigValue.ProtocolString).Equals("vmess")
-	assert.Int(len(config.InboundConfigValue.Content())).GreaterThan(0)
+	assert.String(config.InboundConfig().Protocol()).Equals("vmess")
+	assert.Int(len(config.InboundConfig().Content())).GreaterThan(0)
 
-	assert.String(config.OutboundConfigValue.ProtocolString).Equals("freedom")
+	assert.String(config.OutboundConfig().Protocol()).Equals("freedom")
+  assert.Int(len(config.OutboundConfig().Content())).Equals(0)
 }