summaryrefslogtreecommitdiffstats
path: root/debian/vendor-h2o/t/00unit/lib/core/proxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'debian/vendor-h2o/t/00unit/lib/core/proxy.c')
-rw-r--r--debian/vendor-h2o/t/00unit/lib/core/proxy.c49
1 files changed, 0 insertions, 49 deletions
diff --git a/debian/vendor-h2o/t/00unit/lib/core/proxy.c b/debian/vendor-h2o/t/00unit/lib/core/proxy.c
deleted file mode 100644
index 6f87db1..0000000
--- a/debian/vendor-h2o/t/00unit/lib/core/proxy.c
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (c) 2014 DeNA Co., Ltd.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to
- * deal in the Software without restriction, including without limitation the
- * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- * sell copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- */
-#include "../../test.h"
-#include "../../../../lib/core/proxy.c"
-
-static void test_rewrite_location(void)
-{
- h2o_url_t upstream;
- h2o_mem_pool_t pool;
- h2o_iovec_t ret;
-
- h2o_url_parse(H2O_STRLIT("http://realhost:81/real/"), &upstream);
-
- h2o_mem_init_pool(&pool);
-
- ret = rewrite_location(&pool, H2O_STRLIT("http://realhost:81/real/abc"), &upstream, &H2O_URL_SCHEME_HTTPS,
- h2o_iovec_init(H2O_STRLIT("vhost:8443")), h2o_iovec_init(H2O_STRLIT("/virtual/")));
- ok(h2o_memis(ret.base, ret.len, H2O_STRLIT("https://vhost:8443/virtual/abc")));
- ret = rewrite_location(&pool, H2O_STRLIT("http://realhost:81/other/abc"), &upstream, &H2O_URL_SCHEME_HTTPS,
- h2o_iovec_init(H2O_STRLIT("vhost:8443")), h2o_iovec_init(H2O_STRLIT("/virtual/")));
- ok(ret.base == NULL);
- ok(ret.len == 0);
-
- h2o_mem_clear_pool(&pool);
-}
-
-void test_lib__core__proxy_c()
-{
- subtest("rewrite_location", test_rewrite_location);
-}