Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for linkpath (2.13 sec)

  1. operator/cmd/mesh/profile-dump_test.go

    	installPackagePathRegex := regexp.MustCompile("  installPackagePath: .*")
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			inPath := filepath.Join(testDataDir, "input", tt.desc+".yaml")
    			outPath := filepath.Join(testDataDir, "output", tt.desc+".yaml")
    
    			got, err := runProfileDump(inPath, tt.configPath, snapshotCharts, "")
    			if err != nil {
    				t.Fatal(err)
    			}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jan 20 11:44:25 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest_shared_test.go

    }
    
    // fakeApplyManifest runs istioctl install.
    func fakeApplyManifest(inFile, flags string, chartSource chartSourceType) (*ObjectSet, error) {
    	inPath := filepath.Join(testDataDir, "input", inFile+".yaml")
    	manifest, err := runManifestCommand("install", []string{inPath}, flags, chartSource, nil)
    	if err != nil {
    		return nil, fmt.Errorf("error %s: %s", err, manifest)
    	}
    	return NewObjectSet(getAllIstioObjects()), nil
    }
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Feb 20 22:39:28 GMT 2024
    - 11.7K bytes
    - Viewed (1)
  3. operator/cmd/mesh/manifest-generate_test.go

    	// does not use the established test group pattern
    	inPath := filepath.Join(testDataDir, "input/all_on.yaml")
    	got1, err := runManifestGenerate([]string{inPath}, "", snapshotCharts, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	got2, err := runManifestGenerate([]string{inPath}, "", snapshotCharts, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if got1 != got2 {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 43.5K bytes
    - Viewed (0)
Back to top