mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-11-04 10:21:13 +01:00 
			
		
		
		
	Generate a structured table of contents following the structure of the config. Make high-level examples follow the full structure of the config. Document new multi-doc machine config. Fixes #8023 Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			760 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			760 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
// License, v. 2.0. If a copy of the MPL was not distributed with this
 | 
						|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | 
						|
 | 
						|
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"path/filepath"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
// This test mainly exist for easier debugging with debugger.
 | 
						|
func TestProcessFile(t *testing.T) {
 | 
						|
	inputFile := filepath.Join("..", "..", "pkg", "machinery", "config", "types", "v1alpha1", "v1alpha1_types.go")
 | 
						|
	outputFile := filepath.Join(t.TempDir(), "out.go")
 | 
						|
	schemaOutputFile := filepath.Join(t.TempDir(), "out.schema.json")
 | 
						|
	versionTagFile := filepath.Join("..", "..", "pkg", "machinery", "gendata", "data", "tag")
 | 
						|
	processFile([]string{inputFile}, outputFile, schemaOutputFile, versionTagFile)
 | 
						|
}
 |