mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-30 17:34:13 +01:00
31 lines
806 B
Go
31 lines
806 B
Go
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package repository
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestMergeCustomLabels(t *testing.T) {
|
||
|
files := mergeCustomLabelFiles(optionFileList{
|
||
|
all: []string{"a", "a.yaml", "a.yml"},
|
||
|
custom: nil,
|
||
|
})
|
||
|
assert.EqualValues(t, []string{"a.yaml"}, files, "yaml file should win")
|
||
|
|
||
|
files = mergeCustomLabelFiles(optionFileList{
|
||
|
all: []string{"a", "a.yaml"},
|
||
|
custom: []string{"a"},
|
||
|
})
|
||
|
assert.EqualValues(t, []string{"a"}, files, "custom file should win")
|
||
|
|
||
|
files = mergeCustomLabelFiles(optionFileList{
|
||
|
all: []string{"a", "a.yml", "a.yaml"},
|
||
|
custom: []string{"a", "a.yml"},
|
||
|
})
|
||
|
assert.EqualValues(t, []string{"a.yml"}, files, "custom yml file should win if no yaml")
|
||
|
}
|