aboutsummaryrefslogtreecommitdiff
path: root/plugin/plugin_test.go
diff options
context:
space:
mode:
authorGravatar John Belamaric <jbelamaric@infoblox.com> 2018-01-06 14:52:09 -0500
committerGravatar GitHub <noreply@github.com> 2018-01-06 14:52:09 -0500
commit84ebbbc7225a8d7eb5e00c0c525f7e12932a9fe4 (patch)
tree075407cf860a7e32c121dfc0d292fd389bf7a3c2 /plugin/plugin_test.go
parent75a8a17da4fc95c086dfb447d29c02e7dbd05561 (diff)
downloadcoredns-84ebbbc7225a8d7eb5e00c0c525f7e12932a9fe4.tar.gz
coredns-84ebbbc7225a8d7eb5e00c0c525f7e12932a9fe4.tar.zst
coredns-84ebbbc7225a8d7eb5e00c0c525f7e12932a9fe4.zip
kubernetes: Add zone filtering to fallthrough (#1353)
* Add zone filtering to fallthrough * Doh. gofmt * Update documentation
Diffstat (limited to 'plugin/plugin_test.go')
-rw-r--r--plugin/plugin_test.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugin/plugin_test.go b/plugin/plugin_test.go
index b0736c3a0..80c253843 100644
--- a/plugin/plugin_test.go
+++ b/plugin/plugin_test.go
@@ -1 +1,21 @@
package plugin
+
+import "testing"
+
+func TestFallthrough(t *testing.T) {
+ if Fallthrough(nil, "foo.com.") {
+ t.Errorf("Expected false, got true for nil fallthrough")
+ }
+
+ if !Fallthrough(&[]string{}, "foo.net.") {
+ t.Errorf("Expected true, got false for all zone fallthrough")
+ }
+
+ if Fallthrough(&[]string{"foo.com", "bar.com"}, "foo.net") {
+ t.Errorf("Expected false, got true for non-matching fallthrough zone")
+ }
+
+ if !Fallthrough(&[]string{"foo.com.", "bar.com."}, "bar.com.") {
+ t.Errorf("Expected true, got false for matching fallthrough zone")
+ }
+}
finalizer'>jarred/request-finalizer Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/process.test.js (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-03-02Reduce stack size usage by about 120 KBGravatar Jarred Sumner 1-2/+6
2022-03-02add is_bindgen stubGravatar Jarred Sumner 3-0/+5
2022-03-02reduce number of global constantsGravatar Jarred Sumner 1-55/+29
2022-03-02reduce number of global variablesGravatar Jarred Sumner 3-21/+1752
2022-03-02Update bindings.zigGravatar Jarred Sumner 1-0/+4
2022-03-02Remove function from bindingsGravatar Jarred Sumner 1-7/+1
2022-03-02`DELETE` headerGravatar Jarred Sumner 1-0/+4
2022-03-02[bun.js] fix unicode handling in RouterGravatar Jarred Sumner 1-3/+9
2022-03-02[bun.js] Fix crash due to incorrectly creating stringGravatar Jarred Sumner 1-3/+1
2022-03-02remove a threadlocalGravatar Jarred Sumner 2-12/+908
2022-03-02cleanup error printingGravatar Jarred Sumner 2-2/+5
2022-03-02Update global.zigGravatar Jarred Sumner 1-0/+17
2022-03-02Update fs.zigGravatar Jarred Sumner 1-0/+3
2022-03-02[bun run] Set more environment variablesGravatar Jarred Sumner 2-0/+55
2022-03-02clean up error message when CLI flag is invalidGravatar Jarred Sumner 1-1/+4
2022-03-02add `bun pm cache` and `bun pm cache rm` commandsGravatar Jarred Sumner 1-0/+20
2022-03-01[bun.js] `ResolveError.prototype.toString()` `BuildError.prototype.toString()`Gravatar Jarred Sumner 1-2/+94
2022-03-01add `allowBunRuntime` and `autoImportJSX` flags to Bun.TranspilerGravatar Jarred Sumner 1-1/+32
2022-03-01cleanup code that checks if it should send an HTTP bodyGravatar Jarred Sumner 2-6/+18
2022-03-01[JS Parser] Fix bug with `super` from adding class static blocksGravatar Jarred Sumner 1-1/+12
2022-03-01Update bundler.zigGravatar Jarred Sumner 1-1/+5
2022-03-01Remove unused boolGravatar Jarred Sumner 1-3/+0
2022-03-01[bun.js] Allow disabling runtime imports so bun can build for nodeGravatar Jarred Sumner 3-5/+11
2022-03-01[JS Parser] Make auto importing JSX a flag so the API is easierGravatar Jarred Sumner 1-295/+297
2022-03-01cleanupGravatar Jarred Sumner 1-2/+2
2022-03-01Update javascript.zigGravatar Jarred Sumner 1-50/+0
2022-03-01[bun.js] shim async fsGravatar Jarred Sumner 2-36/+226
2022-03-01[bun.js] Implement `setTimeout`, `setInterval`, `clearTimeout`, `clearInterval`Gravatar Jarred Sumner 11-41/+295
2022-02-27Update transpiler.test.jsGravatar Jarred Sumner 1-0/+8
2022-02-27[TS] Make `export {type foo}` output consistent with TS parserGravatar Jarred Sumner 1-3/+45
2022-02-27WASMGravatar Jarred Sumner 83-690/+10789