|
| 1 | +// Copyright 2015-2025 CEA/DAM/DIF |
| 2 | +// Author: Arnaud Guignard <[email protected]> |
| 3 | +// Contributor: Cyril Servant <[email protected]> |
| 4 | +// |
| 5 | +// This software is governed by the CeCILL-B license under French law and |
| 6 | +// abiding by the rules of distribution of free software. You can use, |
| 7 | +// modify and/ or redistribute the software under the terms of the CeCILL-B |
| 8 | +// license as circulated by CEA, CNRS and INRIA at the following URL |
| 9 | +// "http://www.cecill.info". |
| 10 | + |
| 11 | +package utils |
| 12 | + |
| 13 | +import ( |
| 14 | + "reflect" |
| 15 | + "sort" |
| 16 | + "testing" |
| 17 | + "time" |
| 18 | +) |
| 19 | + |
| 20 | +var start time.Time = time.Now() |
| 21 | + |
| 22 | +var loadConfigTests = []struct { |
| 23 | + filename, username string |
| 24 | + want []string |
| 25 | + err string |
| 26 | +}{ |
| 27 | + {"nonexistingfile.yaml", "alice", []string{}, "open nonexistingfile.yaml: no such file or directory"}, |
| 28 | + {"../../test/configEmpty.yaml", "alice", []string{}, "no destination defined for service 'default'"}, |
| 29 | + {"../../test/configInvalid.yaml", "alice", []string{}, "yaml: found character that cannot start any token"}, |
| 30 | + {"../../test/configCheckIntervalError.yaml", "alice", []string{}, `time: invalid duration "not a duration"`}, |
| 31 | + {"../../test/configCheckIntervalNotString.yaml", "alice", []string{}, "check_interval: 10 is not a string"}, |
| 32 | + {"../../test/configDumpLimitWindowError.yaml", "alice", []string{}, `time: invalid duration "not a duration"`}, |
| 33 | + {"../../test/configDumpLimitWindowNotString.yaml", "alice", []string{}, "dump_limit_window: 10 is not a string"}, |
| 34 | + {"../../test/configEtcdStatsIntervalError.yaml", "alice", []string{}, `time: invalid duration "not a duration"`}, |
| 35 | + {"../../test/configEtcdStatsIntervalNotString.yaml", "alice", []string{}, "etcd_stats_interval: 10 is not a string"}, |
| 36 | + {"../../test/configLogStatsIntervalError.yaml", "alice", []string{}, `time: invalid duration "not a duration"`}, |
| 37 | + {"../../test/configLogStatsIntervalNotString.yaml", "alice", []string{}, "log_stats_interval: 10 is not a string"}, |
| 38 | + {"../../test/configMatchSourceError.yaml", "alice", []string{}, "source: invalid address: address 127.0.0.1:abcd: invalid port"}, |
| 39 | + {"../../test/configRouteSelectError.yaml", "alice", []string{}, "invalid value for `route_select` option of service 'default': notarouteselect"}, |
| 40 | + {"../../test/configModeError.yaml", "alice", []string{}, "invalid value for `mode` option of service 'default': notamode"}, |
| 41 | + // yes, "cannont" is an upstream typo |
| 42 | + {"../../test/configDestNodesetError.yaml", "alice", []string{}, "invalid nodeset for service 'default': cannont convert ending range to integer a - rangeset parse error"}, |
| 43 | + {"../../test/configDestError.yaml", "alice", []string{}, "invalid destination '127.0.0.1:abcd' for service 'default': address 127.0.0.1:abcd: invalid port"}, |
| 44 | + {"../../test/configDefault.yaml", "alice", []string{ |
| 45 | + "libnodeset.so not found, falling back to iskylite's implementation", |
| 46 | + "groups = map[bar:true foo:true]", |
| 47 | + "config.debug = false", |
| 48 | + "config.log = ", |
| 49 | + "config.check_interval = 0s", |
| 50 | + "config.error_banner = ", |
| 51 | + "config.dump = ", |
| 52 | + "config.dump_limit_size = 0", |
| 53 | + "config.dump_limit_window = 0s", |
| 54 | + "config.etcd = {Endpoints:[] TLS:{CAFile: KeyFile: CertFile:} Username: Password: KeyTTL:0 Mandatory:<nil>}", |
| 55 | + "config.etcd_stats_interval = 0s", |
| 56 | + "config.log_stats_interval = 0s", |
| 57 | + "config.blocking_command = ", |
| 58 | + "config.bg_command = ", |
| 59 | + "config.ssh = {Exe:ssh Args:[-q -Y]}", |
| 60 | + "config.environment = map[]", |
| 61 | + "config.service = default", |
| 62 | + "config.dest = [127.0.0.1:22]", |
| 63 | + "config.route_select = ordered", |
| 64 | + "config.mode = sticky", |
| 65 | + "config.force_command = ", |
| 66 | + "config.command_must_match = false", |
| 67 | + "config.etcd_keyttl = 0", |
| 68 | + "config.max_connections_per_user = 0", |
| 69 | + }, ""}, |
| 70 | + {"../../test/config.yaml", "alice", []string{ |
| 71 | + "libnodeset.so not found, falling back to iskylite's implementation", |
| 72 | + "groups = map[bar:true foo:true]", |
| 73 | + "config.debug = true", |
| 74 | + "config.log = /tmp/sshproxy-foo/alice.log", |
| 75 | + "config.check_interval = 2m0s", |
| 76 | + "config.error_banner = an other error banner", |
| 77 | + "config.dump = /tmp/sshproxy-alice-" + start.Format(time.RFC3339Nano) + ".dump", |
| 78 | + "config.dump_limit_size = 20", |
| 79 | + "config.dump_limit_window = 3m0s", |
| 80 | + "config.etcd = {Endpoints:[host2] TLS:{CAFile:ca2.pem KeyFile:cert2.key CertFile:cert2.pem} Username:test2 Password:pass2 KeyTTL:2 Mandatory:false}", |
| 81 | + "config.etcd_stats_interval = 4m0s", |
| 82 | + "config.log_stats_interval = 5m0s", |
| 83 | + "config.blocking_command = /a/blocking/command", |
| 84 | + "config.bg_command = /a/background/command", |
| 85 | + "config.ssh = {Exe:sshhhhh Args:[-vvv -Y]}", |
| 86 | + "config.TranslateCommands.acommand = &{SSHArgs:[] Command:something DisableDump:true}", |
| 87 | + "config.TranslateCommands.internal-sftp = &{SSHArgs:[-s] Command:anothercommand DisableDump:false}", |
| 88 | + "config.environment = map[ENV1:/tmp/env XAUTHORITY:/dev/shm/.Xauthority_alice]", |
| 89 | + "config.service = service5", |
| 90 | + "config.dest = [server1:12345]", |
| 91 | + "config.route_select = bandwidth", |
| 92 | + "config.mode = balanced", |
| 93 | + "config.force_command = acommand", |
| 94 | + "config.command_must_match = false", |
| 95 | + "config.etcd_keyttl = 0", |
| 96 | + "config.max_connections_per_user = 0", |
| 97 | + }, ""}, |
| 98 | + {"../../test/config.yaml", "notalice", []string{ |
| 99 | + "libnodeset.so not found, falling back to iskylite's implementation", |
| 100 | + "groups = map[bar:true foo:true]", |
| 101 | + "config.debug = true", |
| 102 | + "config.log = /var/log/sshproxy/notalice.log", |
| 103 | + "config.check_interval = 2m30s", |
| 104 | + "config.error_banner = an error banner", |
| 105 | + "config.dump = /var/lib/sshproxy/dumps/notalice/" + start.Format(time.RFC3339Nano) + "-abcd.dump", |
| 106 | + "config.dump_limit_size = 10", |
| 107 | + "config.dump_limit_window = 2m31s", |
| 108 | + "config.etcd = {Endpoints:[host1:port1 host2:port2] TLS:{CAFile:ca.pem KeyFile:cert.key CertFile:cert.pem} Username:test Password:pass KeyTTL:5 Mandatory:true}", |
| 109 | + "config.etcd_stats_interval = 2m33s", |
| 110 | + "config.log_stats_interval = 2m32s", |
| 111 | + "config.blocking_command = ", |
| 112 | + "config.bg_command = ", |
| 113 | + "config.ssh = {Exe:ssh Args:[-q -Y]}", |
| 114 | + "config.TranslateCommands.internal-sftp = &{SSHArgs:[-oForwardX11=no -oForwardAgent=no -oPermitLocalCommand=no -oClearAllForwardings=yes -oProtocol=2 -s] Command:sftp DisableDump:true}", |
| 115 | + "config.environment = map[XAUTHORITY:/dev/shm/.Xauthority_notalice]", |
| 116 | + "config.service = default", |
| 117 | + "config.dest = [host5:4222]", |
| 118 | + "config.route_select = ordered", |
| 119 | + "config.mode = sticky", |
| 120 | + "config.force_command = ", |
| 121 | + "config.command_must_match = true", |
| 122 | + "config.etcd_keyttl = 3600", |
| 123 | + "config.max_connections_per_user = 50", |
| 124 | + }, ""}, |
| 125 | +} |
| 126 | + |
| 127 | +func TestLoadConfig(t *testing.T) { |
| 128 | + sid := "abcd" |
| 129 | + groups := map[string]bool{"foo": true, "bar": true} |
| 130 | + sshdHostPort := "127.0.0.1:22" |
| 131 | + for _, tt := range loadConfigTests { |
| 132 | + cachedConfig = Config{} |
| 133 | + config, err := LoadConfig(tt.filename, tt.username, sid, start, groups, sshdHostPort) |
| 134 | + if err == nil && tt.err != "" { |
| 135 | + t.Errorf("got no error, want %s", tt.err) |
| 136 | + } else if err != nil && err.Error() != tt.err { |
| 137 | + t.Errorf("ERROR: %s, want %s", err, tt.err) |
| 138 | + } else if err == nil && !reflect.DeepEqual(PrintConfig(config, groups), tt.want) { |
| 139 | + t.Errorf("want:\n%v\ngot:\n%v", tt.want, PrintConfig(config, groups)) |
| 140 | + } else if err == nil { |
| 141 | + cachedConfig, err := LoadConfig(tt.filename, tt.username, sid, start, groups, sshdHostPort) |
| 142 | + if err != nil { |
| 143 | + t.Errorf("ERROR: %s", err) |
| 144 | + } else if config != cachedConfig { |
| 145 | + t.Error("config and cachedConfig should be the same") |
| 146 | + } |
| 147 | + } |
| 148 | + } |
| 149 | +} |
| 150 | + |
| 151 | +var loadAllDestsFromConfigTests = []struct { |
| 152 | + filename string |
| 153 | + want []string |
| 154 | + err string |
| 155 | +}{ |
| 156 | + {"nonexistingfile.yaml", []string{}, "open nonexistingfile.yaml: no such file or directory"}, |
| 157 | + {"../../test/configInvalid.yaml", []string{}, "yaml: found character that cannot start any token"}, |
| 158 | + {"../../test/configDestNodesetError.yaml", []string{}, "invalid nodeset: cannont convert ending range to integer a - rangeset parse error"}, |
| 159 | + {"../../test/configDefault.yaml", []string{"127.0.0.1"}, ""}, |
| 160 | + {"../../test/config.yaml", []string{ |
| 161 | + "192.168.0.1", |
| 162 | + "192.168.0.2", |
| 163 | + "192.168.0.3", |
| 164 | + "192.168.0.4", |
| 165 | + "192.168.0.5", |
| 166 | + "192.168.0.6", |
| 167 | + "192.168.0.7", |
| 168 | + "192.168.0.8", |
| 169 | + "192.168.0.9", |
| 170 | + "192.168.0.10", |
| 171 | + "host5:4222", |
| 172 | + "server1:12345", |
| 173 | + }, ""}, |
| 174 | +} |
| 175 | + |
| 176 | +func TestLoadAllDestsFromConfig(t *testing.T) { |
| 177 | + for _, tt := range loadAllDestsFromConfigTests { |
| 178 | + config, err := LoadAllDestsFromConfig(tt.filename) |
| 179 | + if err != nil { |
| 180 | + sort.Strings(config) |
| 181 | + } |
| 182 | + if err == nil && tt.err != "" { |
| 183 | + t.Errorf("got no error, want %s", tt.err) |
| 184 | + } else if err != nil && err.Error() != tt.err { |
| 185 | + t.Errorf("ERROR: %s, want %s", err, tt.err) |
| 186 | + } else if err == nil && !reflect.DeepEqual(config, tt.want) { |
| 187 | + t.Errorf("want:\n%v\ngot:\n%v", tt.want, config) |
| 188 | + } |
| 189 | + } |
| 190 | +} |
0 commit comments