fix: Ensure changes in MatchCN annotation are detected (#11529)
Co-authored-by: Wouter Dullaert <wouter.dullaert@exoscale.ch>
This commit is contained in:
parent
6a111a974b
commit
52f89fa1be
3 changed files with 55 additions and 0 deletions
|
|
@ -122,6 +122,9 @@ func (assl1 *Config) Equal(assl2 *Config) bool {
|
|||
if assl1.PassCertToUpstream != assl2.PassCertToUpstream {
|
||||
return false
|
||||
}
|
||||
if assl1.MatchCN != assl2.MatchCN {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -333,6 +333,15 @@ func TestEquals(t *testing.T) {
|
|||
}
|
||||
cfg2.PassCertToUpstream = true
|
||||
|
||||
// Different MatchCN
|
||||
cfg1.MatchCN = "CN=(hello-app|goodbye)"
|
||||
cfg2.MatchCN = "CN=(hello-app)"
|
||||
result = cfg1.Equal(cfg2)
|
||||
if result != false {
|
||||
t.Errorf("Expected false")
|
||||
}
|
||||
cfg2.MatchCN = "CN=(hello-app|goodbye)"
|
||||
|
||||
// Equal Configs
|
||||
result = cfg1.Equal(cfg2)
|
||||
if result != true {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue