Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

errors executing pytest #69

Closed
inode64 opened this issue Feb 11, 2023 · 2 comments
Closed

errors executing pytest #69

inode64 opened this issue Feb 11, 2023 · 2 comments

Comments

@inode64
Copy link

inode64 commented Feb 11, 2023

The same errors always appear and I can't solve it, it seems that some files are missing, such as test_core_server_file
what am i doing wrong
See error log
tests/test__discovery.py::test_discovery FAILED [ 1/12]
tests/test_basic.py::test_basic FAILED [ 2/12]
tests/test_path_parser.py::test_simple_paths PASSED [ 3/12]
tests/test_path_parser.py::test_edge_cases PASSED [ 4/12]
tests/test_path_parser.py::test_quoted_paths PASSED [ 5/12]
tests/test_volume.py::test_get_volume_db ERROR [ 6/12]
tests/test_volume.py::test_get_volume_perent ERROR [ 7/12]
tests/test_volume.py::test_set_volume_db ERROR [ 8/12]
tests/test_volume.py::test_set_volume_percent ERROR [ 9/12]
tests/test_volume.py::test_change_volume_db ERROR [10/12]
tests/test_volume.py::test_change_volume_percent ERROR [11/12]
tests/test_with_callbacks.py::test_callbacks FAILED [12/12]

========================================================================================================================================= ERRORS =========================================================================================================================================
__________________________________________________________________________________________________________________________ ERROR at setup of test_get_volume_db __________________________________________________________________________________________________________________________

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
      host = open("test_core_server_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'test_core_server_file'

request = <SubRequest 'roon_api' for >

tests/test_volume.py:14: FileNotFoundError

During handling of the above exception, another exception occurred:

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
        host = open("test_core_server_file").read()
        port = open("test_core_port_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

request = <SubRequest 'roon_api' for >

tests/test_volume.py:19:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
--------------------------------------------------------------------------------------------------------------------------------- Captured stdout setup ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
________________________________________________________________________________________________________________________ ERROR at setup of test_get_volume_perent ________________________________________________________________________________________________________________________

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
      host = open("test_core_server_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'test_core_server_file'

request = <SubRequest 'roon_api' for >

tests/test_volume.py:14: FileNotFoundError

During handling of the above exception, another exception occurred:

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
        host = open("test_core_server_file").read()
        port = open("test_core_port_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

request = <SubRequest 'roon_api' for >

tests/test_volume.py:19:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
--------------------------------------------------------------------------------------------------------------------------------- Captured stdout setup ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
__________________________________________________________________________________________________________________________ ERROR at setup of test_set_volume_db __________________________________________________________________________________________________________________________

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
      host = open("test_core_server_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'test_core_server_file'

request = <SubRequest 'roon_api' for >

tests/test_volume.py:14: FileNotFoundError

During handling of the above exception, another exception occurred:

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
        host = open("test_core_server_file").read()
        port = open("test_core_port_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

request = <SubRequest 'roon_api' for >

tests/test_volume.py:19:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
--------------------------------------------------------------------------------------------------------------------------------- Captured stdout setup ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
_______________________________________________________________________________________________________________________ ERROR at setup of test_set_volume_percent ________________________________________________________________________________________________________________________

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
      host = open("test_core_server_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'test_core_server_file'

request = <SubRequest 'roon_api' for >

tests/test_volume.py:14: FileNotFoundError

During handling of the above exception, another exception occurred:

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
        host = open("test_core_server_file").read()
        port = open("test_core_port_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

request = <SubRequest 'roon_api' for >

tests/test_volume.py:19:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
--------------------------------------------------------------------------------------------------------------------------------- Captured stdout setup ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
________________________________________________________________________________________________________________________ ERROR at setup of test_change_volume_db _________________________________________________________________________________________________________________________

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
      host = open("test_core_server_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'test_core_server_file'

request = <SubRequest 'roon_api' for >

tests/test_volume.py:14: FileNotFoundError

During handling of the above exception, another exception occurred:

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
        host = open("test_core_server_file").read()
        port = open("test_core_port_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

request = <SubRequest 'roon_api' for >

tests/test_volume.py:19:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
--------------------------------------------------------------------------------------------------------------------------------- Captured stdout setup ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
______________________________________________________________________________________________________________________ ERROR at setup of test_change_volume_percent ______________________________________________________________________________________________________________________

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
      host = open("test_core_server_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'test_core_server_file'

request = <SubRequest 'roon_api' for >

tests/test_volume.py:14: FileNotFoundError

During handling of the above exception, another exception occurred:

request = <SubRequest 'roon_api' for >

@pytest.fixture()
def roon_api(request):
    try:
        host = open("test_core_server_file").read()
        port = open("test_core_port_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

request = <SubRequest 'roon_api' for >

tests/test_volume.py:19:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
--------------------------------------------------------------------------------------------------------------------------------- Captured stdout setup ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
======================================================================================================================================== FAILURES ========================================================================================================================================
_____________________________________________________________________________________________________________________________________ test_discovery _____________________________________________________________________________________________________________________________________

def test_discovery():
    try:
      core_id = open("my_core_id_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'my_core_id_file'

tests/test__discovery.py:22: FileNotFoundError

During handling of the above exception, another exception occurred:

def test_discovery():
    try:
        core_id = open("my_core_id_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

tests/test__discovery.py:26:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
---------------------------------------------------------------------------------------------------------------------------------- Captured stdout call ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
_______________________________________________________________________________________________________________________________________ test_basic _______________________________________________________________________________________________________________________________________

def test_basic():

    try:
      host = open("test_core_server_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'test_core_server_file'

tests/test_basic.py:14: FileNotFoundError

During handling of the above exception, another exception occurred:

def test_basic():

    try:
        host = open("test_core_server_file").read()
        port = open("test_core_port_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

tests/test_basic.py:19:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
---------------------------------------------------------------------------------------------------------------------------------- Captured stdout call ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
_____________________________________________________________________________________________________________________________________ test_callbacks _____________________________________________________________________________________________________________________________________

def test_callbacks():
    callback_count = 0
    events = []

    try:
      host = open("test_core_server_file").read()

E FileNotFoundError: [Errno 2] No such file or directory: 'test_core_server_file'

callback_count = 0
events = []

tests/test_with_callbacks.py:16: FileNotFoundError

During handling of the above exception, another exception occurred:

def test_callbacks():
    callback_count = 0
    events = []

    try:
        host = open("test_core_server_file").read()
        port = open("test_core_port_file").read()
        token = open("my_token_file").read()
    except OSError:
        print("Please authorise first using discovery.py")
      exit()

callback_count = 0
events = []

tests/test_with_callbacks.py:21:


self = Use exit() or Ctrl-D (i.e. EOF) to exit, code = None

def __call__(self, code=None):
    # Shells like IDLE catch the SystemExit, but listen when their
    # stdin wrapper is closed.
    try:
        sys.stdin.close()
    except:
        pass
  raise SystemExit(code)

E SystemExit: None

code = None
self = Use exit() or Ctrl-D (i.e. EOF) to exit

/usr/lib/python3.10/_sitebuiltins.py:26: SystemExit
---------------------------------------------------------------------------------------------------------------------------------- Captured stdout call ----------------------------------------------------------------------------------------------------------------------------------
Please authorise first using discovery.py
================================================================================================================================ short test summary info =================================================================================================================================
ERROR tests/test_volume.py::test_get_volume_db - SystemExit: None
ERROR tests/test_volume.py::test_get_volume_perent - SystemExit: None
ERROR tests/test_volume.py::test_set_volume_db - SystemExit: None
ERROR tests/test_volume.py::test_set_volume_percent - SystemExit: None
ERROR tests/test_volume.py::test_change_volume_db - SystemExit: None
ERROR tests/test_volume.py::test_change_volume_percent - SystemExit: None
FAILED tests/test__discovery.py::test_discovery - SystemExit: None
FAILED tests/test_basic.py::test_basic - SystemExit: None
FAILED tests/test_with_callbacks.py::test_callbacks - SystemExit: None
========================================================================================================================= 3 failed, 3 passed, 6 errors in 0.61s ==========================================================================================================================

@pavoni
Copy link
Owner

pavoni commented Feb 12, 2023

The test code in pyroon is very much WIP.

The basic scaffolding to set up and mock the api is missing - so the tests aren’t run automatically anywhere.

I’ve just used them to test recent code - and have used the example code to setup a live testing structure against my roon core.

What were you working on when you came across this?

onkelbeh pushed a commit to onkelbeh/HomeAssistantRepository that referenced this issue Feb 12, 2023
Change src download, in mirror:pypi have deleted the test directory and changelog.md
Remove test, Always failed, I make a bug in pavoni/pyroon#69

check with pkgcheck 0.10.21
@inode64
Copy link
Author

inode64 commented Feb 12, 2023

I'm helping Gentoo to create the necessary ebuilds for Homeassistant, and when creating this roonai ebuild and try to run the tests to check that it works correctly and I saw the problem

https://git.edevau.net/onkelbeh/HomeAssistantRepository/pulls/978/files
https://git.edevau.net/onkelbeh/HomeAssistantRepository

@pavoni pavoni closed this as completed Feb 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants