From 0cd9662dfbc58574f93e35d508de230a463ecf24 Mon Sep 17 00:00:00 2001 From: Reza Behzadan Date: Sun, 18 Feb 2024 16:03:29 +0330 Subject: [PATCH] Add more test cases --- internal/dict/test_data/dict4.yaml | 6 +-- internal/dict/test_data/getvalue_cases.yaml | 41 +++++++++++++++++++++ 2 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 internal/dict/test_data/getvalue_cases.yaml diff --git a/internal/dict/test_data/dict4.yaml b/internal/dict/test_data/dict4.yaml index 77335d2..d17afc5 100644 --- a/internal/dict/test_data/dict4.yaml +++ b/internal/dict/test_data/dict4.yaml @@ -1,10 +1,6 @@ --- globals: - domain: "main.sample.org" - names: - - Jack - - John - - Jill + domain: "main.sample.net" nginx: globals: http_port: 80 diff --git a/internal/dict/test_data/getvalue_cases.yaml b/internal/dict/test_data/getvalue_cases.yaml new file mode 100644 index 0000000..dfe8aa8 --- /dev/null +++ b/internal/dict/test_data/getvalue_cases.yaml @@ -0,0 +1,41 @@ +--- +- name: "test 1" + arg1: + globals: + domain: "main.sample.net" + nginx: + globals: + http_port: 80 + https_port: 443 + redirect_to_https: true + acme_challange: true + http_port: 8888 + sites: + globals: + domain: "exmaple.com" + rate_limit: + zone: "mylimit" + burst: 20 + cdn: + subdomain: "cdn" + root: "/srv/public/cdn" + www: + subdomain: "www" + domain: "mywebsite.com" + redirect_to_https: false + http2: true + https_port: 8443 + rate_limit: + burst: 70 + arg2: "nginx.sites.www" + result: + subdomain: "www" + domain: "mywebsite.com" + redirect_to_https: false + http2: true + https_port: 8443 + rate_limit: + zone: "mylimit" + burst: 70 + http_port: 80 + acme_challange: true