mirror of
				https://github.com/fluxcd/flux2.git
				synced 2025-10-31 00:06:55 +08:00 
			
		
		
		
	 e8d6d5fe5c
			
		
	
	e8d6d5fe5c
	
	
	
		
			
			Remove use of the fake client, and replace with a real client connected to the testEnv. This required fixes to the yaml files as the testEnv has stricter verifcation of objects. This also meant it was not possible to test a GitRepository with a missing artifact since that is not a valid state. The tests are slower than before, taking around 7-10 seconds each because the testEnv is setup and destroyed for every test. These will be sped up in a follow up PR. Signed-off-by: Allen Porter <allen@thebends.org>
		
			
				
	
	
		
			40 lines
		
	
	
		
			988 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			988 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build unit
 | |
| 
 | |
| package main
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestTraceNoArgs(t *testing.T) {
 | |
| 	cmd := cmdTestCase{
 | |
| 		args:            "trace",
 | |
| 		testClusterMode: TestEnvClusterMode,
 | |
| 		wantError:       true,
 | |
| 		goldenValue:     "object name is required",
 | |
| 	}
 | |
| 	cmd.runTestCmd(t)
 | |
| }
 | |
| 
 | |
| func TestTraceDeployment(t *testing.T) {
 | |
| 	cmd := cmdTestCase{
 | |
| 		args:            "trace podinfo -n podinfo --kind deployment --api-version=apps/v1",
 | |
| 		testClusterMode: TestEnvClusterMode,
 | |
| 		wantError:       false,
 | |
| 		goldenFile:      "testdata/trace/deployment.txt",
 | |
| 		objectFile:      "testdata/trace/deployment.yaml",
 | |
| 	}
 | |
| 	cmd.runTestCmd(t)
 | |
| }
 | |
| 
 | |
| func TestTraceHelmRelease(t *testing.T) {
 | |
| 	cmd := cmdTestCase{
 | |
| 		args:            "trace podinfo -n podinfo --kind HelmRelease --api-version=helm.toolkit.fluxcd.io/v2beta1",
 | |
| 		testClusterMode: TestEnvClusterMode,
 | |
| 		wantError:       false,
 | |
| 		goldenFile:      "testdata/trace/helmrelease.txt",
 | |
| 		objectFile:      "testdata/trace/helmrelease.yaml",
 | |
| 	}
 | |
| 	cmd.runTestCmd(t)
 | |
| }
 |