新しく作成したモデルを ming でテストしたいのですが、モックを作成することにあまり成功していません。
モデル
from ming import Field, schema
from ming.declarative import Document
bind = create_datastore('test')
session = Session(bind)
class Post(Document):
class __mongometa__:
session = session
name = 'blog'
_id = Field(schema.ObjectId)
title = Field(str)
text = Field(str)
comments = Field([str])
テスト
from www.tests.files import intial_post
from www.models import Post
from www.views import post_view
from ming import create_datastore
import pytest
@pytest.fixture()
def no_requests(monkeypatch):
bind = create_datastore('mim://localhost:27017/test')
monkeypatch.setattr("www.model.bind", bind)
def test_blog_view(no_requests):
Post(intial_post).m.insert()
post_view() == Post().m.find_one()
テストはパスしますが、データはメモリからではなく、ディスク内の mongodb から取得されるため、monkeypatch は接続を変更しません。私は自分が近くにいることを感じることができますが、同時にそれを実現することはできません.
前もって感謝します。