tests: add integration tests

This commit is contained in:
Daylin Morgan 2023-09-13 01:37:24 -05:00
parent 67e00968fb
commit eef4d80cfe
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
3 changed files with 25 additions and 4 deletions

6
.gitignore vendored
View File

@ -1,6 +1,6 @@
bin/
*.out
tests/*
!tests/*.nims
!tests/*.nim
tests/*
!tests/*.nim
!tests/*.nims

View File

@ -5,7 +5,7 @@
#
# To run these tests, simply execute `nimble test`.
import std/[strutils,unittest]
import std/unittest
import bbansi

21
tests/tcli.nim Normal file
View File

@ -0,0 +1,21 @@
import std/[
compilesettings,
os,
osproc,
strutils,
unittest
]
const pathToSrc = querySetting(SingleValueSetting.projectPath)
proc cliRun(cmd: string): string =
let (output, _) = execCmdEx(pathToSrc / "bbansi.out " & cmd)
return output.strip()
suite "cli":
setup:
let cmd = "nim c -o:" & pathToSrc / "bbansi.out " & (pathToSrc / ".." / "src" / "bbansi.nim")
check execCmdEx(cmd).exitCode == 0
test "simple":
check "\e[31mRed\e[0m" == cliRun "[red]Red[/]"
check "\e[1m\e[0m\e[1m\e[31mRed\e[0m\e[1m Not Red but Bold\e[0m" == cliRun "'[red]Red[/] Not Red but Bold' " & "--style:bold"