mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	 b868d30434
			
		
	
	b868d30434
	
	
	
		
			
			Co-authored-by: techknowlogick <hello@techknowlogick.com> Co-committed-by: techknowlogick <hello@techknowlogick.com>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2019 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package labels
 | |
| 
 | |
| import (
 | |
| 	"bufio"
 | |
| 	"strings"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestParseLabelLine(t *testing.T) {
 | |
| 	const labels = `#ededed in progress
 | |
| #fbca04 kind/breaking ; breaking label
 | |
| #fc2929 kind/bug
 | |
| #c5def5 kind/deployment ; deployment label
 | |
| #000000 in progress ; in progress label
 | |
| `
 | |
| 
 | |
| 	scanner := bufio.NewScanner(strings.NewReader(labels))
 | |
| 	var i = 1
 | |
| 	for scanner.Scan() {
 | |
| 		line := scanner.Text()
 | |
| 		color, name, description := splitLabelLine(line)
 | |
| 
 | |
| 		switch i {
 | |
| 		case 1:
 | |
| 			assert.EqualValues(t, "#ededed", color)
 | |
| 			assert.EqualValues(t, "in progress", name)
 | |
| 		case 2:
 | |
| 			assert.EqualValues(t, "#fbca04", color)
 | |
| 			assert.EqualValues(t, "kind/breaking", name)
 | |
| 			assert.EqualValues(t, "breaking label", description)
 | |
| 		case 3:
 | |
| 			assert.EqualValues(t, "#fc2929", color)
 | |
| 			assert.EqualValues(t, "kind/bug", name)
 | |
| 		case 4:
 | |
| 			assert.EqualValues(t, "#c5def5", color)
 | |
| 			assert.EqualValues(t, "kind/deployment", name)
 | |
| 			assert.EqualValues(t, "deployment label", description)
 | |
| 		case 5:
 | |
| 			assert.EqualValues(t, "#000000", color)
 | |
| 			assert.EqualValues(t, "in progress", name)
 | |
| 			assert.EqualValues(t, "in progress label", description)
 | |
| 		}
 | |
| 
 | |
| 		i++
 | |
| 	}
 | |
| }
 |