Coverage for tests/test_tutorial/test_options/test_prompt/test_tutorial003_an.py: 100%

31 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-04-14 00:18 +0000

1import subprocess 1abcdefghi

2import sys 1abcdefghi

3 

4import typer 1abcdefghi

5from typer.testing import CliRunner 1abcdefghi

6 

7from docs_src.options.prompt import tutorial003_an as mod 1abcdefghi

8 

9runner = CliRunner() 1abcdefghi

10 

11app = typer.Typer() 1abcdefghi

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

13 

14 

15def test_prompt(): 1abcdefghi

16 result = runner.invoke(app, input="Old Project\nOld Project\n") 1abcdefghi

17 assert result.exit_code == 0 1abcdefghi

18 assert "Deleting project Old Project" in result.output 1abcdefghi

19 

20 

21def test_prompt_not_equal(): 1abcdefghi

22 result = runner.invoke( 1abcdefghi

23 app, input="Old Project\nNew Spice\nOld Project\nOld Project\n" 

24 ) 

25 assert result.exit_code == 0 1abcdefghi

26 assert "Error: The two entered values do not match" in result.output 1abcdefghi

27 assert "Deleting project Old Project" in result.output 1abcdefghi

28 

29 

30def test_option(): 1abcdefghi

31 result = runner.invoke(app, ["--project-name", "Old Project"]) 1abcdefghi

32 assert result.exit_code == 0 1abcdefghi

33 assert "Deleting project Old Project" in result.output 1abcdefghi

34 assert "Project name: " not in result.output 1abcdefghi

35 

36 

37def test_help(): 1abcdefghi

38 result = runner.invoke(app, ["--help"]) 1abcdefghi

39 assert result.exit_code == 0 1abcdefghi

40 assert "--project-name" in result.output 1abcdefghi

41 assert "TEXT" in result.output 1abcdefghi

42 assert "[required]" in result.output 1abcdefghi

43 

44 

45def test_script(): 1abcdefghi

46 result = subprocess.run( 1abcdefghi

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

48 capture_output=True, 

49 encoding="utf-8", 

50 ) 

51 assert "Usage" in result.stdout 1abcdefghi