mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
78 lines
1.7 KiB
Go
78 lines
1.7 KiB
Go
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package config
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
gitpod "github.com/gitpod-io/gitpod/gitpod-protocol"
|
|
)
|
|
|
|
func TestAnalyzeGitpodConfig(t *testing.T) {
|
|
tests := []struct {
|
|
Desc string
|
|
Prev *gitpod.GitpodConfig
|
|
Current *gitpod.GitpodConfig
|
|
Fields []string
|
|
}{
|
|
{
|
|
Desc: "change",
|
|
Prev: &gitpod.GitpodConfig{
|
|
CheckoutLocation: "foo",
|
|
},
|
|
Current: &gitpod.GitpodConfig{
|
|
CheckoutLocation: "bar",
|
|
},
|
|
Fields: []string{"CheckoutLocation"},
|
|
},
|
|
{
|
|
Desc: "add",
|
|
Prev: &gitpod.GitpodConfig{},
|
|
Current: &gitpod.GitpodConfig{
|
|
CheckoutLocation: "bar",
|
|
},
|
|
Fields: []string{"CheckoutLocation"},
|
|
},
|
|
{
|
|
Desc: "remove",
|
|
Prev: &gitpod.GitpodConfig{
|
|
CheckoutLocation: "bar",
|
|
},
|
|
Current: &gitpod.GitpodConfig{},
|
|
Fields: []string{"CheckoutLocation"},
|
|
},
|
|
{
|
|
Desc: "none",
|
|
Prev: &gitpod.GitpodConfig{
|
|
CheckoutLocation: "bar",
|
|
},
|
|
Current: &gitpod.GitpodConfig{
|
|
CheckoutLocation: "bar",
|
|
},
|
|
Fields: nil,
|
|
},
|
|
{
|
|
Desc: "fie created",
|
|
Current: &gitpod.GitpodConfig{},
|
|
Fields: nil,
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
t.Run(test.Desc, func(t *testing.T) {
|
|
var fields []string
|
|
analyzer := NewConfigAnalyzer(log, 100*time.Millisecond, func(field string) {
|
|
fields = append(fields, field)
|
|
}, test.Prev)
|
|
<-analyzer.Analyse(test.Current)
|
|
if diff := cmp.Diff(test.Fields, fields); diff != "" {
|
|
t.Errorf("unexpected output (-want +got):\n%s", diff)
|
|
}
|
|
})
|
|
}
|
|
}
|