@@ -51,6 +51,10 @@ func TestQuerierForDirectory(t *testing.T) {
51
51
Name : "beta" ,
52
52
CurrentCSVName : "etcdoperator.v0.9.0" ,
53
53
},
54
+ {
55
+ Name : "stable" ,
56
+ CurrentCSVName : "etcdoperator.v0.9.2" ,
57
+ },
54
58
},
55
59
}, etcdPackage )
56
60
@@ -65,7 +69,7 @@ func TestQuerierForDirectory(t *testing.T) {
65
69
66
70
etcdChannelEntries , err := store .GetChannelEntriesThatReplace (context .TODO (), "etcdoperator.v0.9.0" )
67
71
require .NoError (t , err )
68
- require .ElementsMatch (t , []* registry.ChannelEntry {{"etcd" , "alpha" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.0" }}, etcdChannelEntries )
72
+ require .ElementsMatch (t , []* registry.ChannelEntry {{"etcd" , "alpha" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.0" },{ "etcd" , "stable" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.0" }, }, etcdChannelEntries )
69
73
70
74
etcdBundleByReplaces , err := store .GetBundleThatReplaces (context .TODO (), "etcdoperator.v0.9.0" , "etcd" , "alpha" )
71
75
require .NoError (t , err )
@@ -78,12 +82,17 @@ func TestQuerierForDirectory(t *testing.T) {
78
82
{"etcd" , "alpha" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.1" },
79
83
{"etcd" , "alpha" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.0" },
80
84
{"etcd" , "beta" , "etcdoperator.v0.6.1" , "" },
81
- {"etcd" , "beta" , "etcdoperator.v0.9.0" , "etcdoperator.v0.6.1" }}, etcdChannelEntriesThatProvide )
85
+ {"etcd" , "beta" , "etcdoperator.v0.9.0" , "etcdoperator.v0.6.1" },
86
+ {"etcd" , "stable" , "etcdoperator.v0.6.1" , "" },
87
+ {"etcd" , "stable" , "etcdoperator.v0.9.0" , "etcdoperator.v0.6.1" },
88
+ {"etcd" , "stable" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.1" },
89
+ {"etcd" , "stable" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.0" },}, etcdChannelEntriesThatProvide )
82
90
83
91
etcdLatestChannelEntriesThatProvide , err := store .GetLatestChannelEntriesThatProvide (context .TODO (), "etcd.database.coreos.com" , "v1beta2" , "EtcdCluster" )
84
92
require .NoError (t , err )
85
93
require .ElementsMatch (t , []* registry.ChannelEntry {{"etcd" , "alpha" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.0" },
86
- {"etcd" , "beta" , "etcdoperator.v0.9.0" , "etcdoperator.v0.6.1" }}, etcdLatestChannelEntriesThatProvide )
94
+ {"etcd" , "beta" , "etcdoperator.v0.9.0" , "etcdoperator.v0.6.1" },
95
+ {"etcd" , "stable" , "etcdoperator.v0.9.2" , "etcdoperator.v0.9.0" }}, etcdLatestChannelEntriesThatProvide )
87
96
88
97
etcdBundleByProvides , entry , err := store .GetBundleThatProvides (context .TODO (), "etcd.database.coreos.com" , "v1beta2" , "EtcdCluster" )
89
98
require .NoError (t , err )
0 commit comments