| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | package fall | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import "testing" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | func TestEqual(t *testing.T) { | 
					
						
							|  |  |  | 	var z F | 
					
						
							|  |  |  | 	f := F{Zones: []string{"example.com."}} | 
					
						
							|  |  |  | 	g := F{Zones: []string{"example.net."}} | 
					
						
							|  |  |  | 	h := F{Zones: []string{"example.com."}} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !f.Equal(h) { | 
					
						
							|  |  |  | 		t.Errorf("%v should equal %v", f, h) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if z.Equal(f) { | 
					
						
							|  |  |  | 		t.Errorf("%v should not be equal to %v", z, f) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if f.Equal(g) { | 
					
						
							|  |  |  | 		t.Errorf("%v should not be equal to %v", f, g) | 
					
						
							| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | func TestZero(t *testing.T) { | 
					
						
							|  |  |  | 	var f F | 
					
						
							| 
									
										
										
										
											2018-01-09 22:29:19 +00:00
										 |  |  | 	if !f.Equal(Zero) { | 
					
						
							| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | 		t.Errorf("F should be zero") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | func TestSetZonesFromArgs(t *testing.T) { | 
					
						
							|  |  |  | 	var f F | 
					
						
							|  |  |  | 	f.SetZonesFromArgs([]string{}) | 
					
						
							| 
									
										
										
										
											2018-01-09 22:29:19 +00:00
										 |  |  | 	if !f.Equal(Root) { | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | 		t.Errorf("F should have the root zone") | 
					
						
							| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	f.SetZonesFromArgs([]string{"example.com", "example.net."}) | 
					
						
							|  |  |  | 	expected := F{Zones: []string{"example.com.", "example.net."}} | 
					
						
							|  |  |  | 	if !f.Equal(expected) { | 
					
						
							|  |  |  | 		t.Errorf("F should be %v but is %v", expected, f) | 
					
						
							| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestFallthrough(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | 	var fall F | 
					
						
							| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | 	if fall.Through("foo.com.") { | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | 		t.Errorf("Expected false, got true for zero fallthrough") | 
					
						
							| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | 	fall.SetZonesFromArgs([]string{}) | 
					
						
							| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | 	if !fall.Through("foo.net.") { | 
					
						
							|  |  |  | 		t.Errorf("Expected true, got false for all zone fallthrough") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-07 14:51:32 -05:00
										 |  |  | 	fall.SetZonesFromArgs([]string{"foo.com", "bar.com"}) | 
					
						
							| 
									
										
										
										
											2018-01-07 16:32:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if fall.Through("foo.net.") { | 
					
						
							|  |  |  | 		t.Errorf("Expected false, got true for non-matching fallthrough zone") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !fall.Through("bar.com.") { | 
					
						
							|  |  |  | 		t.Errorf("Expected true, got false for matching fallthrough zone") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |