PaiGram/test/model/apihelper/test_artifact.py
洛水居室 9327e69f9d
♻ 规范命名 优化导入
`model` → `models`
2022-08-05 19:20:47 +08:00

27 lines
997 B
Python

import unittest
from unittest import IsolatedAsyncioTestCase
from models.apihelper.artifact import ArtifactOcrRate
class TestArtifact(IsolatedAsyncioTestCase):
def setUp(self):
self.artifact_rate = ArtifactOcrRate()
async def test_get_artifact_attr(self):
await self.artifact_rate.get_artifact_attr(b"")
async def test_rate_artifact(self):
artifact_attr = {
'name': '翠绿的猎人之冠', 'pos': '理之冠', 'star': 5, 'level': 20,
'main_item': {'type': 'cr', 'name': '暴击率', 'value': '31.1%'},
'sub_item': [{'type': 'hp', 'name': '生命值', 'value': '9.3%'},
{'type': 'df', 'name': '防御力', 'value': '46'},
{'type': 'atk', 'name': '攻击力', 'value': '49'},
{'type': 'cd', 'name': '暴击伤害', 'value': '10.9%'}]}
await self.artifact_rate.rate_artifact(artifact_attr)
if __name__ == "__main__":
unittest.main()