-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit does two things. First: It splits the `TestMakeInstalledPackageVariables` test into two tests: * One for when `ForceSemverUpgradeConstraints` feature gate enabled (semver) * One for when `ForceSemverUpgradeConstraints` feature gate disabled (legacy semantics) Both tests are not table-style tests. Second: Adds extra coverage for disabled state of the `ForceSemverUpgradeConstraints` feature gate. Previously we were not covering some cases for this state of the gate. Example of such case is when `UpgradeConstraintPolicy` field on `Operator` is set to `Ignore`. Signed-off-by: Mikalai Radchuk <[email protected]>
- Loading branch information
Showing
3 changed files
with
420 additions
and
386 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
internal/resolution/variablesources/fake_object_utils_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package variablesources_test | ||
|
||
import ( | ||
operatorsv1alpha1 "github.com/operator-framework/operator-controller/api/v1alpha1" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/util/uuid" | ||
"k8s.io/utils/pointer" | ||
|
||
rukpakv1alpha1 "github.com/operator-framework/rukpak/api/v1alpha1" | ||
) | ||
|
||
func fakeOperator(name, packageName string, upgradeConstraintPolicy operatorsv1alpha1.UpgradeConstraintPolicy) operatorsv1alpha1.Operator { | ||
return operatorsv1alpha1.Operator{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: name, | ||
// We manually set a fake UID here because the code we test | ||
// uses UID to determine Operator CR which | ||
// owns `BundleDeployment` | ||
UID: uuid.NewUUID(), | ||
}, | ||
Spec: operatorsv1alpha1.OperatorSpec{ | ||
PackageName: packageName, | ||
UpgradeConstraintPolicy: upgradeConstraintPolicy, | ||
}, | ||
} | ||
} | ||
|
||
func fakeBundleDeployment(name, bundleImage string, owner *operatorsv1alpha1.Operator) rukpakv1alpha1.BundleDeployment { | ||
bd := rukpakv1alpha1.BundleDeployment{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: name, | ||
}, | ||
Spec: rukpakv1alpha1.BundleDeploymentSpec{ | ||
ProvisionerClassName: "core-rukpak-io-plain", | ||
Template: &rukpakv1alpha1.BundleTemplate{ | ||
Spec: rukpakv1alpha1.BundleSpec{ | ||
ProvisionerClassName: "core-rukpak-io-plain", | ||
Source: rukpakv1alpha1.BundleSource{ | ||
Image: &rukpakv1alpha1.ImageSource{ | ||
Ref: bundleImage, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
if owner != nil { | ||
bd.SetOwnerReferences([]metav1.OwnerReference{ | ||
{ | ||
APIVersion: operatorsv1alpha1.GroupVersion.String(), | ||
Kind: "Operator", | ||
Name: owner.Name, | ||
UID: owner.UID, | ||
Controller: pointer.Bool(true), | ||
BlockOwnerDeletion: pointer.Bool(true), | ||
}, | ||
}) | ||
} | ||
|
||
return bd | ||
} |
Oops, something went wrong.