mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 12:27:36 +03:00
Fix tests
This commit is contained in:
parent
f2ec319fe1
commit
e65926fd08
29 changed files with 492 additions and 457 deletions
|
@ -10,9 +10,9 @@ import (
|
|||
)
|
||||
|
||||
func TestOptionsWrapper(t *testing.T) {
|
||||
inbound := option.LegacyInbound{
|
||||
inbound := option.Inbound{
|
||||
Type: C.TypeHTTP,
|
||||
HTTPOptions: option.HTTPMixedInboundOptions{
|
||||
Options: &option.HTTPMixedInboundOptions{
|
||||
InboundTLSOptionsContainer: option.InboundTLSOptionsContainer{
|
||||
TLS: &option.InboundTLSOptions{
|
||||
Enabled: true,
|
||||
|
@ -20,13 +20,11 @@ func TestOptionsWrapper(t *testing.T) {
|
|||
},
|
||||
},
|
||||
}
|
||||
rawOptions, err := inbound.RawOptions()
|
||||
require.NoError(t, err)
|
||||
tlsOptionsWrapper, loaded := rawOptions.(option.InboundTLSOptionsWrapper)
|
||||
tlsOptionsWrapper, loaded := inbound.Options.(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")
|
||||
require.False(t, inbound.Options.(*option.HTTPMixedInboundOptions).TLS.Enabled, "replace tls enabled")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue