我的文件夹结构如下。我正在尝试建立一个测试文件夹并在其中导入应用程序
(base) xadr-a01:redis-example adrianlee$ tree
.
├── Dockerfile
├── README.md
├── __pycache__
│ └── app.cpython-37.pyc
├── config
├── deployment.yaml
├── redis.yaml
├── requirements.txt
├── server
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ └── app.cpython-37.pyc
│ ├── app.py
│ ├── config.py
│ └── templates
│ └── index.html
└── tests
└── app.test
在我的服务器/app.py中,这是我的代码
#!/usr/bin/python
from flask import Flask, render_template, jsonify
from redis import Redis
import os
import json
app = Flask(__name__)
host = os.environ['REDIS_SERVICE']
redis = Redis(host=host, port=6379)
@app.route("/", methods=["GET"])
@app.route("/index", methods=["GET", "POST"])
def index():
counter = redis.incr("hits")
return render_template("index.html",counter=counter)
@app.route("/getdata", methods=["GET"])
def get_data():
data = redis.get("hits")
result = int(data)
return jsonify({'count': result})
if __name__ == "__main__":
app.run(
host="0.0.0.0",
port=8000,
debug=True
)
在我的tests / app.test中,我正在尝试导入server / app.py。
import unittest
import fakeredis
import json
from server.app import app
import app
from mock import patch, MagicMock
class BasicTestCase(unittest.TestCase):
counter = 1
def setUp(self):
self.app = app.app.test_client()
app.redis = fakeredis.FakeStrictRedis()
app.redis.set('hits',BasicTestCase.counter)
def create_redis(self):
return fakeredis.FakeStrictRedis()
def test_getdata(self):
response = self.app.get('/getdata', content_type='html/text')
data = json.loads(response.get_data(as_text=True))
expected = {'count': BasicTestCase.counter}
assert expected == data
def test_increment(self):
response = self.app.get('/', content_type='html/text')
result = self.app.get('/getdata', content_type='html/text')
data = json.loads(result.get_data(as_text=True))
expected = {'count': BasicTestCase.counter +1 }
assert expected == data
def test_index(self):
response = self.app.get('/', content_type='html/text')
self.assertEqual(response.status_code, 200)
if __name__ == '__main__':
unittest.main()
但是,我不断收到modulenotfounderror。我不确定为什么我不能将我的应用程序导入子文件夹
File "app.test", line 4, in <module>
from server.app import app
ModuleNotFoundError: No module named 'server'
我做错什么了吗
答案 0 :(得分:0)
我想您需要相对的介绍。如果您编写module.app,Python会尝试从同一目录导入。如果您是这种情况,则需要从上述目录中导入。
尝试一下:
from ..server.app import app