-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathtest_tools.py
More file actions
34 lines (25 loc) · 984 Bytes
/
test_tools.py
File metadata and controls
34 lines (25 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import unittest
import pytest
from office.api.tools import *
from tests.test_utils.test_input import stub_stdin
class TestTools(unittest.TestCase):
@pytest.mark.skip(reason="交互式功能,暂时跳过")
def test_weather(self):
stub_stdin(self, '北京\ny\nq\n') # 依次输入
weather()
def test_url2ip(self):
url2ip('www.python-office.com')
@pytest.mark.skip(reason="交互式功能,暂时跳过")
def test_lottery8ticket(self):
stub_stdin(self, '12\n0\n') # 依次输入
lottery8ticket()
def test_create_article(self):
create_article('生日快乐', line_num=2000)
# def test_pwd4wifi(self):
# stub_stdin(self, '1\ny\n') #依次输入
# pwd4wifi(pwd_list=['12345678', 'CoderWanFeng'])
def test_open_soft(self):
soft_path = r'D:\software\wechat\WeChat.exe'
wftools.open_soft(soft_path, num=2)
def test_net_speed_test(self):
net_speed_test()