Add very simple test cases

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui
2019-08-04 19:50:34 +01:00
parent 9b419ce37d
commit 6bc8cfc3ce
2 changed files with 33 additions and 0 deletions

18
tests/basic.py Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python
import xcffib.xproto as xproto
import xcffib
conn = xcffib.connect()
setup = conn.get_setup()
root = setup.roots[0].root
visual = setup.roots[0].root_visual
depth = setup.roots[0].root_depth
wid = conn.generate_id()
conn.core.CreateWindowChecked(depth, wid, root, 0, 0, 100, 100, 0, xproto.WindowClass.InputOutput, visual, 0, []).check()
conn.core.MapWindowChecked(wid).check()
conn.core.UnmapWindowChecked(wid).check()
conn.core.DestroyWindowChecked(wid).check()