Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v8plus / lib / python2.4 / site-packages / Pmw / Pmw_1_2 / tests / Colors_test.py
# Tests for Pmw color handling.
import Tkinter
import Test
import Pmw
Test.initialise()
testData = ()
defaultPalette = Pmw.Color.getdefaultpalette(Test.root)
c = Tkinter.Button
colors = ('red', 'orange', 'yellow', 'green', 'blue', 'purple', 'white')
normalcolors = map(Pmw.Color.changebrightness,
(Test.root,) * len(colors), colors, (0.85,) * len(colors))
kw = {}
tests = (
(Pmw.Color.setscheme, (Test.root, normalcolors[0]), {'foreground' : 'white'}),
)
testData = testData + ((c, ((tests, kw),)),)
for color in normalcolors[1:]:
kw = {'text' : color}
tests = (
(c.pack, ()),
('state', 'active'),
)
testData = testData + ((c, ((tests, kw),)),)
kw = {}
tests = (
(Pmw.Color.setscheme, (Test.root, color), {'foreground' : 'red'}),
)
testData = testData + ((c, ((tests, kw),)),)
# Restore the default colors.
kw = {}
tests = (
(Pmw.Color.setscheme, (Test.root,), defaultPalette),
)
testData = testData + ((c, ((tests, kw),)),)
if __name__ == '__main__':
Test.runTests(testData)