mirror of https://github.com/docker/docs.git
				
				
				
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			432 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			432 B
		
	
	
	
		
			Go
		
	
	
	
| package provision
 | |
| 
 | |
| import (
 | |
| 	"regexp"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestRedHatGenerateYumRepoList(t *testing.T) {
 | |
| 	info := &OsRelease{
 | |
| 		ID: "rhel",
 | |
| 	}
 | |
| 	p := NewRedHatProvisioner("rhel", nil)
 | |
| 	p.SetOsReleaseInfo(info)
 | |
| 
 | |
| 	buf, err := generateYumRepoList(p)
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 
 | |
| 	m, err := regexp.MatchString(".*centos/7.*", buf.String())
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 
 | |
| 	if !m {
 | |
| 		t.Fatalf("expected match for centos/7")
 | |
| 	}
 | |
| }
 |