-
-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://xpra.org/svn/Xpra/trunk@23113 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env python | ||
# This file is part of Xpra. | ||
# Copyright (C) 2019 Antoine Martin <[email protected]> | ||
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any | ||
# later version. See the file COPYING for details. | ||
|
||
import unittest | ||
|
||
from xpra.util import AdHocStruct, typedict | ||
from xpra.client.mixins.encodings import Encodings | ||
from unit.client.mixins.clientmixintest_util import ClientMixinTest | ||
|
||
|
||
class DisplayClientTest(ClientMixinTest): | ||
|
||
def test_display(self): | ||
x = Encodings() | ||
opts = AdHocStruct() | ||
opts.encoding = "" | ||
opts.encodings = ["rgb", "png"] | ||
opts.quality = 0 | ||
opts.min_quality = 20 | ||
opts.speed = 0 | ||
opts.min_speed = 20 | ||
opts.video_scaling = "no" | ||
opts.video_decoders = [] | ||
opts.csc_modules = [] | ||
opts.video_encoders = [] | ||
|
||
x.init(opts) | ||
assert x.get_caps() is not None | ||
x.server_capabilities = typedict({ | ||
"encodings" : ["rgb"], | ||
"encodings.core" : ["rgb32", "rgb24", "png"], | ||
"encodings.problematic" : [], | ||
"encoding" : "" | ||
}) | ||
x.parse_server_capabilities() | ||
|
||
def main(): | ||
unittest.main() | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |