get.pme.sh/pnats@v0.0.0-20240304004023-26bb5a137ed0/test/opts_test.go (about) 1 // Copyright 2015-2018 The NATS Authors 2 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // you may not use this file except in compliance with the License. 4 // You may obtain a copy of the License at 5 // 6 // http://www.apache.org/licenses/LICENSE-2.0 7 // 8 // Unless required by applicable law or agreed to in writing, software 9 // distributed under the License is distributed on an "AS IS" BASIS, 10 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 // See the License for the specific language governing permissions and 12 // limitations under the License. 13 14 package test 15 16 import ( 17 "testing" 18 ) 19 20 func TestServerConfig(t *testing.T) { 21 srv, opts := RunServerWithConfig("./configs/override.conf") 22 defer srv.Shutdown() 23 24 c := createClientConn(t, opts.Host, opts.Port) 25 defer c.Close() 26 27 sinfo := checkInfoMsg(t, c) 28 if sinfo.MaxPayload != opts.MaxPayload { 29 t.Fatalf("Expected max_payload from server, got %d vs %d", 30 opts.MaxPayload, sinfo.MaxPayload) 31 } 32 } 33 34 func TestTLSConfig(t *testing.T) { 35 srv, opts := RunServerWithConfig("./configs/tls.conf") 36 defer srv.Shutdown() 37 38 c := createClientConn(t, opts.Host, opts.Port) 39 defer c.Close() 40 41 sinfo := checkInfoMsg(t, c) 42 if !sinfo.TLSRequired { 43 t.Fatal("Expected TLSRequired to be true when configured") 44 } 45 }