V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
duzhonglin
V2EX  ›  Python

Python 不同文件变量调用

  •  
  •   duzhonglin · 2019-01-08 16:00:21 +08:00 · 1997 次点击
    这是一个创建于 1927 天前的主题,其中的信息可能已经有所发展或是发生改变。

    文件名:login_jinfive.py

    -- coding:UTF-8 --

    import requests import logging import unittest logging.basicConfig(level=logging.INFO)

    class TestLogin(unittest.TestCase):

    def setUp(self):
        self.data = {
            "username": "10086",
            "password": "10086"
        }
        self.error ={
            "username": "10089",
            "password": "10089"
        }
        self.pass_null = {
            "username": "10086",
            "password": ""
        }
        self.username_null = {
            "username": "",
            "password": "10086"
        }
        self.host = "http://xx.xx.xx.xx"
        self.path = "/auth/token/profile/get/"
        self.url = self.host + self.path
        return self.host
    
    def test_a_req_post(self):
        # noinspection PyBroadException
        response = requests.post(self.url, data=self.data)
        if response.status_code == 200:
            logging.info("登陆成功")
            self.response_token = response.json()["token"]
            # logging.info("token: %s" % response_token)
        else:
            logging.info("登陆失败")
    
    def test_b_req_error(self):
        response = requests.post(self.url, data=self.error)
        logging.info(response.text)
    
    def test_c_password_null(self):
        response = requests.post(self.url, data=self.pass_null)
        logging.info(response.text)
    
    def test_d_username_null(self):
        response = requests.post(self.url, data=self.username_null)
        logging.info(response.text)
    

    if name == "main": unittest.main()

    各位大神,我在 abc.py 文件该如何引用 login_jinfive.py 引用 response_token 这个变量呢,谢谢(我用的 python2 )

    该文件为 abc.py from Login_JinFive import TestLogin

    a = TestLogin.response_token

    这样无法调用的报错: ValueError: no such test method in <class 'Login_JinFive.TestLogin'>: runTest

    4 条回复    2019-01-08 17:05:59 +08:00
    Gakho
        1
    Gakho  
       2019-01-08 16:35:20 +08:00
    emm,可以先了解一下作用域相关知识,你就清楚了
    duzhonglin
        2
    duzhonglin  
    OP
       2019-01-08 16:58:05 +08:00
    @Gakho 谢谢
    fanhaipeng0403
        3
    fanhaipeng0403  
       2019-01-08 17:03:43 +08:00
    legb ?
    bxqqq
        4
    bxqqq  
       2019-01-08 17:05:59 +08:00
    你这个 res_token 是在调用 test_a_req_post 函数的时候,才绑定到实例上的。没调用之前自然是找不到的。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1183 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 18:15 · PVG 02:15 · LAX 11:15 · JFK 14:15
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.