summary refs log tree commit diff stats
path: root/test/tc_colorscheme.py
blob: c09b9fa98fe6cfe29b909ef2032f626a2c5918a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

if __name__ == '__main__': from __init__ import init; init()

from unittest import TestCase, main
import random
import ranger.colorschemes
from ranger.gui.colorscheme import ColorScheme
from ranger.gui.context import CONTEXT_KEYS

class Test(TestCase):
	def setUp(self):
		import random
		schemes = []
		for key, mod in vars(ranger.colorschemes).items():
			if type(mod) == type(random):
				for key, var in vars(mod).items():
					if type(var) == type and issubclass(var, ColorScheme) \
							and var != ColorScheme:
						schemes.append(var)
		self.schemes = set(schemes)

	def test_colorschemes(self):
		def test(scheme):
			scheme.get()  # test with no arguments

			for i in range(300):  # test with a bunch of random (valid) arguments
				sample = random.sample(CONTEXT_KEYS, random.randint(2, 9))
				scheme.get(*sample)

		for scheme in self.schemes:
			test(scheme())

if __name__ == '__main__': main()
content="vim8.1_v1"> <meta name="syntax" content="none"> <meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy="> <meta name="colorscheme" content="minimal-light"> <style type="text/css"> <!-- pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #c6c6c6; } body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; } a { color:inherit; } * { font-size:12pt; font-size: 1em; } .subxComment { color: #005faf; } .LineNr { } .Constant { color: #008787; } --> </style> <script type='text/javascript'> <!-- /* function to open any folds containing a jumped-to line before jumping to it */ function JumpToLine() { var lineNum; lineNum = window.location.hash; lineNum = lineNum.substr(1); /* strip off '#' */ if (lineNum.indexOf('L') == -1) { lineNum = 'L'+lineNum; } var lineElem = document.getElementById(lineNum); /* Always jump to new location even if the line was hidden inside a fold, or * we corrected the raw number to a line ID. */ if (lineElem) { lineElem.scrollIntoView(true); } return true; } if ('onhashchange' in window) { window.onhashchange = JumpToLine; } --> </script> </head> <body onload='JumpToLine();'> <a href='https://github.com/akkartik/mu/blob/main/baremetal/mu-init.subx'>https://github.com/akkartik/mu/blob/main/baremetal/mu-init.subx</a> <pre id='vimCodeElement'> <span id="L1" class="LineNr"> 1 </span><span class="subxComment"># Initialize the minimal runtime for Mu programs.</span> <span id="L2" class="LineNr"> 2 </span><span class="subxComment">#</span> <span id="L3" class="LineNr"> 3 </span><span class="subxComment"># See translate_mu_baremetal for how this file is used.</span> <span id="L4" class="LineNr"> 4 </span><span class="subxComment">#</span> <span id="L5" class="LineNr"> 5 </span><span class="subxComment"># Mu baremetal programs start at a function called 'main' without inouts or outputs.</span> <span id="L6" class="LineNr"> 6 </span> <span id="L7" class="LineNr"> 7 </span>== code <span id="L8" class="LineNr"> 8 </span> <span id="L9" class="LineNr"> 9 </span><span class="subxComment"># initialize stack</span> <span id="L10" class="LineNr">10 </span>bd/copy-to-ebp 0/imm32 <span id="L11" class="LineNr">11 </span><span class="subxComment"># no heap yet</span> <span id="L12" class="LineNr">12 </span><span class="subxComment">#</span> <span id="L13" class="LineNr">13 </span><span class="subxComment"># always first run tests</span> <span id="L14" class="LineNr">14 </span>(run-tests) <span id="L15" class="LineNr">15 </span>(<a href='104test.subx.html#L17'>num-test-failures</a>) <span class="subxComment"># =&gt; eax</span> <span id="L16" class="LineNr">16 </span><span class="subxComment"># call main if tests all passed</span> <span id="L17" class="LineNr">17 </span>{ <span id="L18" class="LineNr">18 </span> 3d/compare-eax-and 0/imm32 <span id="L19" class="LineNr">19 </span> 75/jump-if-!= <span class="Constant">break</span>/disp8 <span id="L20" class="LineNr">20 </span> (<a href='500clear-screen.mu.html#L1'>clear-screen</a>) <span id="L21" class="LineNr">21 </span> (main) <span id="L22" class="LineNr">22 </span>} <span id="L23" class="LineNr">23 </span> <span id="L24" class="LineNr">24 </span><span class="subxComment"># hang indefinitely</span> <span id="L25" class="LineNr">25 </span>{ <span id="L26" class="LineNr">26 </span> eb/jump <span class="Constant">loop</span>/disp8 <span id="L27" class="LineNr">27 </span>} </pre> </body> </html> <!-- vim: set foldmethod=manual : -->