mirror of
https://github.com/yshui/picom.git
synced 2025-04-07 17:44:04 -04:00
tests: add testcase for 22162cb7e2
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
22162cb7e2
commit
be91b443a8
3 changed files with 58 additions and 0 deletions
5
tests/configs/clear_shadow_unredirected.conf
Normal file
5
tests/configs/clear_shadow_unredirected.conf
Normal file
|
@ -0,0 +1,5 @@
|
|||
shadow = true;
|
||||
shadow-exclude = [
|
||||
"name = 'NoShadow'"
|
||||
]
|
||||
unredir-if-possible = true;
|
|
@ -16,3 +16,4 @@ eval `dbus-launch --sh-syntax`
|
|||
./run_one_test.sh $exe configs/issue314.conf testcases/issue314_3.py
|
||||
./run_one_test.sh $exe /dev/null testcases/issue299.py
|
||||
./run_one_test.sh $exe configs/issue465.conf testcases/issue465.py
|
||||
./run_one_test.sh $exe configs/clear_shadow_unredirected.conf testcases/clear_shadow_unredirected.py
|
||||
|
|
52
tests/testcases/clear_shadow_unredirected.py
Executable file
52
tests/testcases/clear_shadow_unredirected.py
Executable file
|
@ -0,0 +1,52 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import xcffib.xproto as xproto
|
||||
import xcffib
|
||||
import time
|
||||
from common import set_window_name
|
||||
|
||||
conn = xcffib.connect()
|
||||
setup = conn.get_setup()
|
||||
root = setup.roots[0].root
|
||||
visual = setup.roots[0].root_visual
|
||||
depth = setup.roots[0].root_depth
|
||||
|
||||
name = "_NET_WM_STATE"
|
||||
name_atom = conn.core.InternAtom(False, len(name), name).reply().atom
|
||||
atom = "ATOM"
|
||||
atom_atom = conn.core.InternAtom(False, len(atom), atom).reply().atom
|
||||
fs = "_NET_WM_STATE_FULLSCREEN"
|
||||
fs_atom = conn.core.InternAtom(False, len(fs), fs).reply().atom
|
||||
|
||||
# making sure disable shadow while screen is unredirected doesn't cause assertion failure
|
||||
wid = conn.generate_id()
|
||||
print("Window id is ", hex(wid))
|
||||
|
||||
# Create a window
|
||||
conn.core.CreateWindowChecked(depth, wid, root, 0, 0, 100, 100, 0, xproto.WindowClass.InputOutput, visual, 0, []).check()
|
||||
|
||||
# Set Window name so it doesn't get a shadow
|
||||
set_window_name(conn, wid, "YesShadow")
|
||||
|
||||
# Map the window
|
||||
print("mapping")
|
||||
conn.core.MapWindowChecked(wid).check()
|
||||
|
||||
time.sleep(0.5)
|
||||
|
||||
# Set fullscreen property, causing screen to be unredirected
|
||||
conn.core.ChangePropertyChecked(xproto.PropMode.Replace, wid, name_atom, atom_atom, 32, 1, [fs_atom]).check()
|
||||
|
||||
time.sleep(0.5)
|
||||
|
||||
# Set the Window name so it loses its shadow
|
||||
print("set new name")
|
||||
set_window_name(conn, wid, "NoShadow")
|
||||
|
||||
# Unmap the window
|
||||
conn.core.UnmapWindowChecked(wid).check()
|
||||
|
||||
time.sleep(0.5)
|
||||
|
||||
# Destroy the window
|
||||
conn.core.DestroyWindowChecked(wid).check()
|
Loading…
Add table
Reference in a new issue