forked from SagerNet/sing-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrapper_test.go
32 lines (28 loc) · 908 Bytes
/
wrapper_test.go
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
package main
import (
"testing"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/option"
"github.com/stretchr/testify/require"
)
func TestOptionsWrapper(t *testing.T) {
inbound := option.Inbound{
Type: C.TypeHTTP,
HTTPOptions: option.HTTPMixedInboundOptions{
InboundTLSOptionsContainer: option.InboundTLSOptionsContainer{
TLS: &option.InboundTLSOptions{
Enabled: true,
},
},
},
}
rawOptions, err := inbound.RawOptions()
require.NoError(t, err)
tlsOptionsWrapper, loaded := rawOptions.(option.InboundTLSOptionsWrapper)
require.True(t, loaded, "find inbound tls options")
tlsOptions := tlsOptionsWrapper.TakeInboundTLSOptions()
require.NotNil(t, tlsOptions, "find inbound tls options")
tlsOptions.Enabled = false
tlsOptionsWrapper.ReplaceInboundTLSOptions(tlsOptions)
require.False(t, inbound.HTTPOptions.TLS.Enabled, "replace tls enabled")
}