Coverage for tests/test_tutorial/test_terminating/test_tutorial001.py: 100%

26 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-09 18:26 +0000

1import subprocess 1abcdefgh

2import sys 1abcdefgh

3 

4import typer 1abcdefgh

5from typer.testing import CliRunner 1abcdefgh

6 

7from docs_src.terminating import tutorial001 as mod 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10 

11app = typer.Typer() 1abcdefgh

12app.command()(mod.main) 1abcdefgh

13 

14 

15def test_cli(): 1abcdefgh

16 result = runner.invoke(app, ["Camila"]) 1abcdefgh

17 assert result.exit_code == 0 1abcdefgh

18 assert "User created: Camila" in result.output 1abcdefgh

19 assert "Notification sent for new user: Camila" in result.output 1abcdefgh

20 

21 

22def test_existing(): 1abcdefgh

23 result = runner.invoke(app, ["rick"]) 1abcdefgh

24 assert result.exit_code == 0 1abcdefgh

25 assert "The user already exists" in result.output 1abcdefgh

26 assert "Notification sent for new user" not in result.output 1abcdefgh

27 

28 

29def test_existing_no_standalone(): 1abcdefgh

30 # Mainly for coverage 

31 result = runner.invoke(app, ["rick"], standalone_mode=False) 1abcdefgh

32 assert result.exit_code == 0 1abcdefgh

33 assert "The user already exists" in result.output 1abcdefgh

34 assert "Notification sent for new user" not in result.output 1abcdefgh

35 

36 

37def test_script(): 1abcdefgh

38 result = subprocess.run( 1abcdefgh

39 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"], 

40 capture_output=True, 

41 encoding="utf-8", 

42 ) 

43 assert "Usage" in result.stdout 1abcdefgh