-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from martinkunc/dont-delay-first
Bug 1841057: Skip the initial upload delay
- Loading branch information
Showing
3 changed files
with
126 additions
and
10 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
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,89 @@ | ||
package status | ||
|
||
import ( | ||
"testing" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
"k8s.io/klog" | ||
|
||
configv1 "github.com/openshift/api/config/v1" | ||
configfake "github.com/openshift/client-go/config/clientset/versioned/fake" | ||
"github.com/openshift/insights-operator/pkg/config" | ||
"github.com/openshift/insights-operator/pkg/config/configobserver" | ||
"github.com/openshift/insights-operator/pkg/utils" | ||
kubeclientfake "k8s.io/client-go/kubernetes/fake" | ||
) | ||
|
||
func TestSaveInitialStart(t *testing.T) { | ||
|
||
tests := []struct { | ||
name string | ||
clusterOperator *configv1.ClusterOperator | ||
expErr error | ||
initialRun bool | ||
expectedSafeInitialStart bool | ||
}{ | ||
{ | ||
name: "Non-initial run is has upload delayed", | ||
initialRun: false, | ||
expectedSafeInitialStart: false, | ||
}, | ||
{ | ||
name: "Initial run with not existing Insights operator is not delayed", | ||
initialRun: true, | ||
clusterOperator: nil, | ||
expectedSafeInitialStart: true, | ||
}, | ||
{ | ||
name: "Initial run with existing Insights operator which is degraded is delayed", | ||
initialRun: true, | ||
clusterOperator: &configv1.ClusterOperator{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "insights", | ||
}, | ||
Status: configv1.ClusterOperatorStatus{Conditions: []configv1.ClusterOperatorStatusCondition{ | ||
{Type: configv1.OperatorDegraded, Status: configv1.ConditionTrue}, | ||
}}, | ||
}, | ||
expectedSafeInitialStart: false, | ||
}, | ||
{ | ||
name: "Initial run with existing Insights operator which is not degraded not delayed", | ||
initialRun: true, | ||
clusterOperator: &configv1.ClusterOperator{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "insights", | ||
}, | ||
Status: configv1.ClusterOperatorStatus{Conditions: []configv1.ClusterOperatorStatusCondition{ | ||
{Type: configv1.OperatorDegraded, Status: configv1.ConditionFalse}, | ||
}}, | ||
}, | ||
expectedSafeInitialStart: true, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
|
||
klog.SetOutput(utils.NewTestLog(t).Writer()) | ||
operators := []runtime.Object{} | ||
if tt.clusterOperator != nil { | ||
operators = append(operators, tt.clusterOperator) | ||
} | ||
kubeclientsetclient := kubeclientfake.NewSimpleClientset() | ||
|
||
client := configfake.NewSimpleClientset(operators...) | ||
ctrl := &Controller{name: "insights", client: client.ConfigV1(), configurator: configobserver.New(config.Controller{Report: true}, kubeclientsetclient)} | ||
|
||
err := ctrl.updateStatus(tt.initialRun) | ||
isSafe := ctrl.SafeInitialStart() | ||
if err != tt.expErr { | ||
t.Fatalf("updateStatus returned unexpected error: %s Expected %s", err, tt.expErr) | ||
} | ||
if isSafe != tt.expectedSafeInitialStart { | ||
t.Fatalf("unexpected SafeInitialStart was: %t Expected %t", isSafe, tt.expectedSafeInitialStart) | ||
} | ||
}) | ||
} | ||
} |
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