summaryrefslogtreecommitdiffhomepage
path: root/test/test_rewrite.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_rewrite.py')
-rw-r--r--test/test_rewrite.py27
1 files changed, 13 insertions, 14 deletions
diff --git a/test/test_rewrite.py b/test/test_rewrite.py
index 8d81ec49..f94fb528 100644
--- a/test/test_rewrite.py
+++ b/test/test_rewrite.py
@@ -1,6 +1,7 @@
-import os
+from pathlib import Path
import pytest
+
from unit.applications.proto import ApplicationProto
client = ApplicationProto()
@@ -10,7 +11,7 @@ client = ApplicationProto()
def setup_method_fixture():
assert 'success' in client.conf(
{
- "listeners": {"*:7080": {"pass": "routes"}},
+ "listeners": {"*:8080": {"pass": "routes"}},
"routes": [
{
"match": {"uri": "/"},
@@ -39,9 +40,9 @@ def set_rewrite(rewrite, uri):
def test_rewrite(findall, wait_for_record):
assert client.get()['status'] == 200
- assert wait_for_record(rf'\[notice\].*"routes/1" selected') is not None
- assert len(findall(rf'\[notice\].*URI rewritten to "/new"')) == 1
- assert len(findall(rf'\[notice\].*URI rewritten')) == 1
+ assert wait_for_record(r'\[notice\].*"routes/1" selected') is not None
+ assert len(findall(r'\[notice\].*URI rewritten to "/new"')) == 1
+ assert len(findall(r'\[notice\].*URI rewritten')) == 1
set_rewrite("", "")
assert client.get()['status'] == 200
@@ -112,7 +113,7 @@ def test_rewrite_location():
def check_location(rewrite, expect):
assert 'success' in client.conf(
{
- "listeners": {"*:7080": {"pass": "routes"}},
+ "listeners": {"*:8080": {"pass": "routes"}},
"routes": [
{
"action": {
@@ -131,17 +132,15 @@ def test_rewrite_location():
def test_rewrite_share(temp_dir):
- os.makedirs(f'{temp_dir}/dir')
- os.makedirs(f'{temp_dir}/foo')
-
- with open(f'{temp_dir}/foo/index.html', 'w') as fooindex:
- fooindex.write('fooindex')
+ Path(f'{temp_dir}/dir').mkdir()
+ Path(f'{temp_dir}/foo/').mkdir()
+ Path(f'{temp_dir}/foo/index.html').write_text('fooindex', encoding='utf-8')
# same action block
assert 'success' in client.conf(
{
- "listeners": {"*:7080": {"pass": "routes"}},
+ "listeners": {"*:8080": {"pass": "routes"}},
"routes": [
{
"action": {
@@ -162,7 +161,7 @@ def test_rewrite_share(temp_dir):
index_path = f'{temp_dir}${{request_uri}}/index.html'
assert 'success' in client.conf(
{
- "listeners": {"*:7080": {"pass": "routes"}},
+ "listeners": {"*:8080": {"pass": "routes"}},
"routes": [
{
"match": {"uri": "/foo"},
@@ -182,7 +181,7 @@ def test_rewrite_share(temp_dir):
assert 'success' in client.conf(
{
- "listeners": {"*:7080": {"pass": "routes"}},
+ "listeners": {"*:8080": {"pass": "routes"}},
"routes": [
{
"match": {"uri": "/foo"},