mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-11-04 09:25:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 Woodpecker Authors
 | 
						|
//
 | 
						|
// Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
// you may not use this file except in compliance with the License.
 | 
						|
// You may obtain a copy of the License at
 | 
						|
//
 | 
						|
//     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
//
 | 
						|
// Unless required by applicable law or agreed to in writing, software
 | 
						|
// distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
// See the License for the specific language governing permissions and
 | 
						|
// limitations under the License.
 | 
						|
 | 
						|
package compiler
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
 | 
						|
	backend_types "go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/types"
 | 
						|
)
 | 
						|
 | 
						|
func TestConvertPortNumber(t *testing.T) {
 | 
						|
	portDef := "1234"
 | 
						|
	actualPort, err := convertPort(portDef)
 | 
						|
	assert.NoError(t, err)
 | 
						|
	assert.Equal(t, backend_types.Port{
 | 
						|
		Number:   1234,
 | 
						|
		Protocol: "",
 | 
						|
	}, actualPort)
 | 
						|
}
 | 
						|
 | 
						|
func TestConvertPortUdp(t *testing.T) {
 | 
						|
	portDef := "1234/udp"
 | 
						|
	actualPort, err := convertPort(portDef)
 | 
						|
	assert.NoError(t, err)
 | 
						|
	assert.Equal(t, backend_types.Port{
 | 
						|
		Number:   1234,
 | 
						|
		Protocol: "udp",
 | 
						|
	}, actualPort)
 | 
						|
}
 | 
						|
 | 
						|
func TestConvertPortWrongOrder(t *testing.T) {
 | 
						|
	portDef := "tcp/1234"
 | 
						|
	_, err := convertPort(portDef)
 | 
						|
	assert.Error(t, err)
 | 
						|
}
 | 
						|
 | 
						|
func TestConvertPortWrongDelimiter(t *testing.T) {
 | 
						|
	portDef := "1234|udp"
 | 
						|
	_, err := convertPort(portDef)
 | 
						|
	assert.Error(t, err)
 | 
						|
}
 | 
						|
 | 
						|
func TestConvertPortWrong(t *testing.T) {
 | 
						|
	portDef := "http"
 | 
						|
	_, err := convertPort(portDef)
 | 
						|
	assert.Error(t, err)
 | 
						|
}
 |