| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | package auto | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2018-10-21 15:59:37 +02:00
										 |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 	"regexp" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var dbFiles = []string{"db.example.org", "aa.example.org"} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const zoneContent = `; testzone | 
					
						
							|  |  |  | @	IN	SOA	sns.dns.icann.org. noc.dns.icann.org. 2016082534 7200 3600 1209600 3600 | 
					
						
							|  |  |  | 		NS	a.iana-servers.net. | 
					
						
							|  |  |  | 		NS	b.iana-servers.net. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | www IN A 127.0.0.1 | 
					
						
							|  |  |  | ` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestWalk(t *testing.T) { | 
					
						
							|  |  |  | 	tempdir, err := createFiles() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		if tempdir != "" { | 
					
						
							|  |  |  | 			os.RemoveAll(tempdir) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer os.RemoveAll(tempdir) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ldr := loader{ | 
					
						
							|  |  |  | 		directory: tempdir, | 
					
						
							|  |  |  | 		re:        regexp.MustCompile(`db\.(.*)`), | 
					
						
							|  |  |  | 		template:  `${1}`, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 	a := Auto{ | 
					
						
							|  |  |  | 		loader: ldr, | 
					
						
							|  |  |  | 		Zones:  &Zones{}, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 	a.Walk() | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// db.example.org and db.example.com should be here (created in createFiles) | 
					
						
							|  |  |  | 	for _, name := range []string{"example.com.", "example.org."} { | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 		if _, ok := a.Zones.Z[name]; !ok { | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 			t.Errorf("%s should have been added", name) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-06 19:37:43 +00:00
										 |  |  | func TestWalkNonExistent(t *testing.T) { | 
					
						
							|  |  |  | 	nonExistingDir := "highly_unlikely_to_exist_dir" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ldr := loader{ | 
					
						
							|  |  |  | 		directory: nonExistingDir, | 
					
						
							|  |  |  | 		re:        regexp.MustCompile(`db\.(.*)`), | 
					
						
							|  |  |  | 		template:  `${1}`, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	a := Auto{ | 
					
						
							|  |  |  | 		loader: ldr, | 
					
						
							|  |  |  | 		Zones:  &Zones{}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	a.Walk() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | func createFiles() (string, error) { | 
					
						
							|  |  |  | 	dir, err := ioutil.TempDir(os.TempDir(), "coredns") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return dir, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, name := range dbFiles { | 
					
						
							| 
									
										
										
										
											2018-10-21 15:59:37 +02:00
										 |  |  | 		if err := ioutil.WriteFile(filepath.Join(dir, name), []byte(zoneContent), 0644); err != nil { | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 			return dir, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// symlinks | 
					
						
							| 
									
										
										
										
											2018-10-21 15:59:37 +02:00
										 |  |  | 	if err = os.Symlink(filepath.Join(dir, "db.example.org"), filepath.Join(dir, "db.example.com")); err != nil { | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 		return dir, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-21 15:59:37 +02:00
										 |  |  | 	if err = os.Symlink(filepath.Join(dir, "db.example.org"), filepath.Join(dir, "aa.example.com")); err != nil { | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 		return dir, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return dir, nil | 
					
						
							|  |  |  | } |