Files
@ 31f510a88584
Branch filter:
Location: kallithea/rhodecode/tests/vcs/test_nodes.py
31f510a88584
7.2 KiB
text/x-python
Update minified YUI to version 2.9 built from Source.
yui.2.9.js used to be a minified version of YUI 2.9 until 5143b8df576c updated
it to something else and applied more aggresive minification. We stick to a
clean but minified version 2.9.
The license of YUI is BSD 3-clause, as described on
http://yuilibrary.com/license/ .
Since the minified version combines with GPLv3'd Javascript, it is only GPLv3'd
compliant to distribute this Object Code version with the Corresponding Source
(or offer therefor).
This yui.2.9.js is built from Source this way:
git clone https://github.com/yui/builder
git clone https://github.com/yui/yui2
cd yui2/
git checkout hudson-yui2-2800
ln -sf JumpToPageDropDown.js src/paginator/js/JumpToPageDropdown.js # work around inconsistent casing
rm -f tmp.js
for m in yahoo event dom connection animation dragdrop element datasource autocomplete container event-delegate json datatable paginator; do
rm -f build/$m/$m.js; ( cd src/$m && ant build deploybuild ) && sed -e 's,@VERSION@,2.9.0,g' -e 's,@BUILD@,2800,g' build/$m/$m.js >> tmp.js
done
java -jar ../builder/componentbuild/lib/yuicompressor/yuicompressor-2.4.4.jar tmp.js -o yui.2.9.js
The source is mirrored and available on https://kallithea-scm.org/repos/mirror .
yui.2.9.js used to be a minified version of YUI 2.9 until 5143b8df576c updated
it to something else and applied more aggresive minification. We stick to a
clean but minified version 2.9.
The license of YUI is BSD 3-clause, as described on
http://yuilibrary.com/license/ .
Since the minified version combines with GPLv3'd Javascript, it is only GPLv3'd
compliant to distribute this Object Code version with the Corresponding Source
(or offer therefor).
This yui.2.9.js is built from Source this way:
git clone https://github.com/yui/builder
git clone https://github.com/yui/yui2
cd yui2/
git checkout hudson-yui2-2800
ln -sf JumpToPageDropDown.js src/paginator/js/JumpToPageDropdown.js # work around inconsistent casing
rm -f tmp.js
for m in yahoo event dom connection animation dragdrop element datasource autocomplete container event-delegate json datatable paginator; do
rm -f build/$m/$m.js; ( cd src/$m && ant build deploybuild ) && sed -e 's,@VERSION@,2.9.0,g' -e 's,@BUILD@,2800,g' build/$m/$m.js >> tmp.js
done
java -jar ../builder/componentbuild/lib/yuicompressor/yuicompressor-2.4.4.jar tmp.js -o yui.2.9.js
The source is mirrored and available on https://kallithea-scm.org/repos/mirror .
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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | from __future__ import with_statement
import stat
from rhodecode.lib.vcs.nodes import DirNode
from rhodecode.lib.vcs.nodes import FileNode
from rhodecode.lib.vcs.nodes import Node
from rhodecode.lib.vcs.nodes import NodeError
from rhodecode.lib.vcs.nodes import NodeKind
from rhodecode.lib.vcs.utils.compat import unittest
class NodeBasicTest(unittest.TestCase):
def test_init(self):
"""
Cannot innitialize Node objects with path with slash at the beginning.
"""
wrong_paths = (
'/foo',
'/foo/bar'
)
for path in wrong_paths:
self.assertRaises(NodeError, Node, path, NodeKind.FILE)
wrong_paths = (
'/foo/',
'/foo/bar/'
)
for path in wrong_paths:
self.assertRaises(NodeError, Node, path, NodeKind.DIR)
def test_name(self):
node = Node('', NodeKind.DIR)
self.assertEqual(node.name, '')
node = Node('path', NodeKind.FILE)
self.assertEqual(node.name, 'path')
node = Node('path/', NodeKind.DIR)
self.assertEqual(node.name, 'path')
node = Node('some/path', NodeKind.FILE)
self.assertEqual(node.name, 'path')
node = Node('some/path/', NodeKind.DIR)
self.assertEqual(node.name, 'path')
def test_root_node(self):
self.assertRaises(NodeError, Node, '', NodeKind.FILE)
def test_kind_setter(self):
node = Node('', NodeKind.DIR)
self.assertRaises(NodeError, setattr, node, 'kind', NodeKind.FILE)
def _test_parent_path(self, node_path, expected_parent_path):
"""
Tests if node's parent path are properly computed.
"""
node = Node(node_path, NodeKind.DIR)
parent_path = node.get_parent_path()
self.assertTrue(parent_path.endswith('/') or \
node.is_root() and parent_path == '')
self.assertEqual(parent_path, expected_parent_path,
"Node's path is %r and parent path is %r but should be %r"
% (node.path, parent_path, expected_parent_path))
def test_parent_path(self):
test_paths = (
# (node_path, expected_parent_path)
('', ''),
('some/path/', 'some/'),
('some/longer/path/', 'some/longer/'),
)
for node_path, expected_parent_path in test_paths:
self._test_parent_path(node_path, expected_parent_path)
'''
def _test_trailing_slash(self, path):
if not path.endswith('/'):
self.fail("Trailing slash tests needs paths to end with slash")
for kind in NodeKind.FILE, NodeKind.DIR:
self.assertRaises(NodeError, Node, path=path, kind=kind)
def test_trailing_slash(self):
for path in ('/', 'foo/', 'foo/bar/', 'foo/bar/biz/'):
self._test_trailing_slash(path)
'''
def test_is_file(self):
node = Node('any', NodeKind.FILE)
self.assertTrue(node.is_file())
node = FileNode('any')
self.assertTrue(node.is_file())
self.assertRaises(AttributeError, getattr, node, 'nodes')
def test_is_dir(self):
node = Node('any_dir', NodeKind.DIR)
self.assertTrue(node.is_dir())
node = DirNode('any_dir')
self.assertTrue(node.is_dir())
self.assertRaises(NodeError, getattr, node, 'content')
def test_dir_node_iter(self):
nodes = [
DirNode('docs'),
DirNode('tests'),
FileNode('bar'),
FileNode('foo'),
FileNode('readme.txt'),
FileNode('setup.py'),
]
dirnode = DirNode('', nodes=nodes)
for node in dirnode:
node == dirnode.get_node(node.path)
def test_node_state(self):
"""
Without link to changeset nodes should raise NodeError.
"""
node = FileNode('anything')
self.assertRaises(NodeError, getattr, node, 'state')
node = DirNode('anything')
self.assertRaises(NodeError, getattr, node, 'state')
def test_file_node_stat(self):
node = FileNode('foobar', 'empty... almost')
mode = node.mode # default should be 0100644
self.assertTrue(mode & stat.S_IRUSR)
self.assertTrue(mode & stat.S_IWUSR)
self.assertTrue(mode & stat.S_IRGRP)
self.assertTrue(mode & stat.S_IROTH)
self.assertFalse(mode & stat.S_IWGRP)
self.assertFalse(mode & stat.S_IWOTH)
self.assertFalse(mode & stat.S_IXUSR)
self.assertFalse(mode & stat.S_IXGRP)
self.assertFalse(mode & stat.S_IXOTH)
def test_file_node_is_executable(self):
node = FileNode('foobar', 'empty... almost', mode=0100755)
self.assertTrue(node.is_executable)
node = FileNode('foobar', 'empty... almost', mode=0100500)
self.assertTrue(node.is_executable)
node = FileNode('foobar', 'empty... almost', mode=0100644)
self.assertFalse(node.is_executable)
def test_mimetype(self):
py_node = FileNode('test.py')
tar_node = FileNode('test.tar.gz')
ext = 'CustomExtension'
my_node2 = FileNode('myfile2')
my_node2._mimetype = [ext]
my_node3 = FileNode('myfile3')
my_node3._mimetype = [ext,ext]
self.assertEqual(py_node.mimetype,'text/x-python')
self.assertEqual(py_node.get_mimetype(),('text/x-python',None))
self.assertEqual(tar_node.mimetype,'application/x-tar')
self.assertEqual(tar_node.get_mimetype(),('application/x-tar','gzip'))
self.assertRaises(NodeError,my_node2.get_mimetype)
self.assertEqual(my_node3.mimetype,ext)
self.assertEqual(my_node3.get_mimetype(),[ext,ext])
class NodeContentTest(unittest.TestCase):
def test_if_binary(self):
data = """\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f??a\x00\x00\x00\x04gAMA\x00\x00\xaf?7\x05\x8a?\x00\x00\x00\x19tEXtSoftware\x00Adobe ImageReadyq?e<\x00\x00\x025IDAT8?\xa5\x93?K\x94Q\x14\x87\x9f\xf7?Q\x1bs4?\x03\x9a\xa8?B\x02\x8b$\x10[U;i\x13?6h?&h[?"\x14j?\xa2M\x7fB\x14F\x9aQ?&\x842?\x0b\x89"\x82??!?\x9c!\x9c2l??{N\x8bW\x9dY\xb4\t/\x1c?=\x9b?}????\xa9*;9!?\x83\x91?[?\\v*?D\x04\'`EpNp\xa2X\'U?pVq"Sw.\x1e?\x08\x01D?jw????\xbc??7{|\x9b?\x89$\x01??W@\x15\x9c\x05q`Lt/\x97?\x94\xa1d?\x18~?\x18?\x18W[%\xb0?\x83??\x14\x88\x8dB?\xa6H\tL\tl\x19>/\x01`\xac\xabx?\x9cl\nx\xb0\x98\x07\x95\x88D$"q[\x19?d\x00(o\n\xa0??\x7f\xb9\xa4?\x1bF\x1f\x8e\xac\xa8?j??eUU}?.?\x9f\x8cE??x\x94??\r\xbdtoJU5"0N\x10U?\x00??V\t\x02\x9f\x81?U?\x00\x9eM\xae2?r\x9b7\x83\x82\x8aP3????.?&"?\xb7ZP \x0c<?O\xa5\t}\xb8?\x99\xa6?\x87?\x1di|/\xa0??0\xbe\x1fp?d&\x1a\xad\x95\x8a\x07?\t*\x10??b:?d?.\x13C\x8a?\x12\xbe\xbf\x8e?{???\x08?\x80\xa7\x13+d\x13>J?\x80\x15T\x95\x9a\x00??S\x8c\r?\xa1\x03\x07?\x96\x9b\xa7\xab=E??\xa4\xb3?\x19q??B\x91=\x8d??k?J\x0bV"??\xf7x?\xa1\x00?\\.\x87\x87???\x02F@D\x99],??\x10#?X\xb7=\xb9\x10?Z\x1by???cI??\x1ag?\x92\xbc?T?t[\x92\x81?<_\x17~\x92\x88?H%?\x10Q\x02\x9f\n\x81qQ\x0bm?\x1bX?\xb1AK\xa6\x9e\xb9?u\xb2?1\xbe|/\x92M@\xa2!F?\xa9>"\r<DT?>\x92\x8e?>\x9a9Qv\x127?a\xac?Y?8?:??]X???9\x80\xb7?u?\x0b#BZ\x8d=\x1d?p\x00\x00\x00\x00IEND\xaeB`\x82"""
filenode = FileNode('calendar.png', content=data)
self.assertTrue(filenode.is_binary)
if __name__ == '__main__':
unittest.main()
|