Mercurial > hg
annotate tests/test-hybridencode.py @ 40793:64cdfcc73706
cache: create `cache` directory at init time
The cache directory will be needed very quickly, so it seems simpler to create
it early to make sure it has the same owner and permission than the other
directory in the repository.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Thu, 15 Nov 2018 02:38:55 +0100 |
parents | 6574c81b6831 |
children | 2372284d9457 |
rev | line source |
---|---|
28750
2b0d7be90fc4
py3: use print_function in test-hybridencode.py
Robert Stanca <robert.stanca7@gmail.com>
parents:
28749
diff
changeset
|
1 from __future__ import absolute_import, print_function |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
2 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
3 import unittest |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
4 |
28749
2fa5c7c1df8c
py3: use absolute_import in test-hybridencode.py
Robert Stanca <robert.stanca7@gmail.com>
parents:
25027
diff
changeset
|
5 from mercurial import ( |
2fa5c7c1df8c
py3: use absolute_import in test-hybridencode.py
Robert Stanca <robert.stanca7@gmail.com>
parents:
25027
diff
changeset
|
6 store, |
2fa5c7c1df8c
py3: use absolute_import in test-hybridencode.py
Robert Stanca <robert.stanca7@gmail.com>
parents:
25027
diff
changeset
|
7 ) |
7275
c00cdac22d3c
add new test-hybridencode.py
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
8 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
9 class hybridencodetests(unittest.TestCase): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
10 def hybridencode(self, input, want): |
17622
57bf86677daa
test-hybridencode: use store._dothybridencode(s)
Adrian Buehlmann <adrian@cadifra.com>
parents:
17617
diff
changeset
|
11 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
12 # Check the C implementation if it's in use |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
13 got = store._pathencode(input) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
14 self.assertEqual(want, got) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
15 # Check the reference implementation in Python |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
16 refgot = store._hybridencode(input, True) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
17 self.assertEqual(want, refgot) |
17432
61bd77b57c86
test-hybridencode: more testcases
Adrian Buehlmann <adrian@cadifra.com>
parents:
17404
diff
changeset
|
18 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
19 def testnoencodingrequired(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
20 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
21 b'data/abcdefghijklmnopqrstuvwxyz0123456789 !#%&\'()+,-.;=[]^`{}', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
22 b'data/abcdefghijklmnopqrstuvwxyz0123456789 !#%&\'()+,-.;=[]^`{}') |
17432
61bd77b57c86
test-hybridencode: more testcases
Adrian Buehlmann <adrian@cadifra.com>
parents:
17404
diff
changeset
|
23 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
24 def testuppercasechars(self): # uppercase char X is encoded as _x |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
25 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
26 b'data/ABCDEFGHIJKLMNOPQRSTUVWXYZ', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
27 b'data/_a_b_c_d_e_f_g_h_i_j_k_l_m_n_o_p_q_r_s_t_u_v_w_x_y_z') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
28 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
29 def testunderbar(self): # underbar is doubled |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
30 self.hybridencode(b'data/_', b'data/__') |
17432
61bd77b57c86
test-hybridencode: more testcases
Adrian Buehlmann <adrian@cadifra.com>
parents:
17404
diff
changeset
|
31 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
32 def testtilde(self): # tilde is character-encoded |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
33 self.hybridencode(b'data/~', b'data/~7e') |
17432
61bd77b57c86
test-hybridencode: more testcases
Adrian Buehlmann <adrian@cadifra.com>
parents:
17404
diff
changeset
|
34 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
35 def testcontrolchars(self): # characters in ASCII code range 1..31 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
36 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
37 (b'data/\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
38 b'\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
39 b'\x1f'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
40 (b'data/~01~02~03~04~05~06~07~08~09~0a~0b~0c~0d~0e~0f~10~11~12~13' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
41 b'~14~15~16~17~18~19~1a~1b~1c~1d~1e~1f')) |
17432
61bd77b57c86
test-hybridencode: more testcases
Adrian Buehlmann <adrian@cadifra.com>
parents:
17404
diff
changeset
|
42 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
43 def testhighascii(self):# characters in ASCII code range 126..255 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
44 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
45 (b'data/~\x7f\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
46 b'\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
47 b'\x9c\x9d\x9e\x9f'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
48 (b'data/~7e~7f~80~81~82~83~84~85~86~87~88~89~8a~8b~8c~8d~8e~8f~90' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
49 b'~91~92~93~94~95~96~97~98~99~9a~9b~9c~9d~9e~9f')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
50 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
51 (b'data/\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
52 b'\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
53 b'\xbd\xbe\xbf'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
54 (b'data/~a0~a1~a2~a3~a4~a5~a6~a7~a8~a9~aa~ab~ac~ad~ae~af~b0~b1~b2' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
55 b'~b3~b4~b5~b6~b7~b8~b9~ba~bb~bc~bd~be~bf')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
56 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
57 (b'data/\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
58 b'\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
59 b'\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
60 (b'data/~c0~c1~c2~c3~c4~c5~c6~c7~c8~c9~ca~cb~cc~cd~ce~cf~d0~d1~d2' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
61 b'~d3~d4~d5~d6~d7~d8~d9~da~db~dc~dd~de~df')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
62 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
63 (b'data/\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
64 b'\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
65 b'\xfe\xff'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
66 (b'data/~e0~e1~e2~e3~e4~e5~e6~e7~e8~e9~ea~eb~ec~ed~ee~ef~f0~f1~f2' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
67 b'~f3~f4~f5~f6~f7~f8~f9~fa~fb~fc~fd~fe~ff')) |
17432
61bd77b57c86
test-hybridencode: more testcases
Adrian Buehlmann <adrian@cadifra.com>
parents:
17404
diff
changeset
|
68 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
69 def testwinreserved(self): # Windows reserved characters |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
70 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
71 (b'data/less <, greater >, colon :, double-quote ", backslash \\, ' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
72 b'pipe |, question-mark ?, asterisk *'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
73 (b'data/less ~3c, greater ~3e, colon ~3a, double-quote ~22, ' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
74 b'backslash ~5c, pipe ~7c, question-mark ~3f, asterisk ~2a')) |
7275
c00cdac22d3c
add new test-hybridencode.py
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
75 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
76 def testhgreserved(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
77 # encoding directories ending in .hg, .i or .d with '.hg' suffix |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
78 self.hybridencode(b'data/x.h.i/x.hg/x.i/x.d/foo', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
79 b'data/x.h.i.hg/x.hg.hg/x.i.hg/x.d.hg/foo') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
80 self.hybridencode(b'data/a.hg/a.i/a.d/foo', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
81 b'data/a.hg.hg/a.i.hg/a.d.hg/foo') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
82 self.hybridencode(b'data/au.hg/au.i/au.d/foo', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
83 b'data/au.hg.hg/au.i.hg/au.d.hg/foo') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
84 self.hybridencode(b'data/aux.hg/aux.i/aux.d/foo', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
85 b'data/au~78.hg.hg/au~78.i.hg/au~78.d.hg/foo') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
86 self.hybridencode(b'data/auxy.hg/auxy.i/auxy.d/foo', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
87 b'data/auxy.hg.hg/auxy.i.hg/auxy.d.hg/foo') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
88 # but these are not encoded on *filenames* |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
89 self.hybridencode(b'data/foo/x.hg', b'data/foo/x.hg') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
90 self.hybridencode(b'data/foo/x.i', b'data/foo/x.i') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
91 self.hybridencode(b'data/foo/x.d', b'data/foo/x.d') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
92 self.hybridencode(b'data/foo/a.hg', b'data/foo/a.hg') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
93 self.hybridencode(b'data/foo/a.i', b'data/foo/a.i') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
94 self.hybridencode(b'data/foo/a.d', b'data/foo/a.d') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
95 self.hybridencode(b'data/foo/au.hg', b'data/foo/au.hg') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
96 self.hybridencode(b'data/foo/au.i', b'data/foo/au.i') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
97 self.hybridencode(b'data/foo/au.d', b'data/foo/au.d') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
98 self.hybridencode(b'data/foo/aux.hg', b'data/foo/au~78.hg') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
99 self.hybridencode(b'data/foo/aux.i', b'data/foo/au~78.i') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
100 self.hybridencode(b'data/foo/aux.d', b'data/foo/au~78.d') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
101 self.hybridencode(b'data/foo/auxy.hg', b'data/foo/auxy.hg') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
102 self.hybridencode(b'data/foo/auxy.i', b'data/foo/auxy.i') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
103 self.hybridencode(b'data/foo/auxy.d', b'data/foo/auxy.d') |
17432
61bd77b57c86
test-hybridencode: more testcases
Adrian Buehlmann <adrian@cadifra.com>
parents:
17404
diff
changeset
|
104 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
105 # plain .hg, .i and .d directories have the leading dot encoded |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
106 self.hybridencode(b'data/.hg/.i/.d/foo', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
107 b'data/~2ehg.hg/~2ei.hg/~2ed.hg/foo') |
17432
61bd77b57c86
test-hybridencode: more testcases
Adrian Buehlmann <adrian@cadifra.com>
parents:
17404
diff
changeset
|
108 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
109 def testmisclongcases(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
110 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
111 (b'data/aux.bla/bla.aux/prn/PRN/lpt/com3/nul/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
112 b'coma/foo.NUL/normal.c.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
113 (b'data/au~78.bla/bla.aux/pr~6e/_p_r_n/lpt/co~6d3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
114 b'/nu~6c/coma/foo._n_u_l/normal.c.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
115 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
116 (b'data/AUX/SECOND/X.PRN/FOURTH/FI:FTH/SIXTH/SEVENTH/EIGHTH/NINETH' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
117 b'/TENTH/ELEVENTH/LOREMIPSUM.TXT.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
118 (b'dh/au~78/second/x.prn/fourth/fi~3afth/sixth/seventh/eighth/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
119 b'nineth/tenth/loremia20419e358ddff1bf8751e38288aff1d7c32ec05.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
120 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
121 (b'data/enterprise/openesbaddons/contrib-imola/corba-bc/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
122 b'netbeansplugin/wsdlExtension/src/main/java/META-INF/services' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
123 b'/org.netbeans.modules.xml.wsdl.bindingsupport.spi.' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
124 b'ExtensibilityElementTemplateProvider.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
125 (b'dh/enterpri/openesba/contrib-/corba-bc/netbeans/wsdlexte/src/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
126 b'main/java/org.net7018f27961fdf338a598a40c4683429e7ffb9743.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
127 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
128 (b'data/AUX.THE-QUICK-BROWN-FOX-JU:MPS-OVER-THE-LAZY-DOG-THE-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
129 b'QUICK-BROWN-FOX-JUMPS-OVER-THE-LAZY-DOG.TXT.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
130 (b'dh/au~78.the-quick-brown-fox-ju~3amps-over-the-lazy-dog-the-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
131 b'quick-brown-fox-jud4dcadd033000ab2b26eb66bae1906bcb15d4a70.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
132 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
133 (b'data/Project Planning/Resources/AnotherLongDirectoryName/Follow' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
134 b'edbyanother/AndAnother/AndThenAnExtremelyLongFileName.txt'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
135 (b'dh/project_/resource/anotherl/followed/andanoth/andthenanextrem' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
136 b'elylongfilenaf93030515d9849cfdca52937c2204d19f83913e5.txt')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
137 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
138 (b'data/Project.Planning/Resources/AnotherLongDirectoryName/Follo' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
139 b'wedbyanother/AndAnother/AndThenAnExtremelyLongFileName.txt'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
140 (b'dh/project_/resource/anotherl/followed/andanoth/andthenanextre' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
141 b'melylongfilena0fd7c506f5c9d58204444fc67e9499006bd2d445.txt')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
142 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
143 b'data/foo.../foo / /a./_. /__/.x../ bla/.FOO/something.i', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
144 (b'data/foo..~2e/foo ~20/~20/a~2e/__.~20/____/~2ex.~2e/~20 bla/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
145 b'~2e_f_o_o/something.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
146 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
147 b'data/c/co/com/com0/com1/com2/com3/com4/com5/com6/com7/com8/com9', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
148 (b'data/c/co/com/com0/co~6d1/co~6d2/co~6d3/co~6d4/co~6d5/co~6d6/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
149 b'co~6d7/co~6d8/co~6d9')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
150 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
151 b'data/C/CO/COM/COM0/COM1/COM2/COM3/COM4/COM5/COM6/COM7/COM8/COM9', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
152 (b'data/_c/_c_o/_c_o_m/_c_o_m0/_c_o_m1/_c_o_m2/_c_o_m3/_c_o_m4/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
153 b'_c_o_m5/_c_o_m6/_c_o_m7/_c_o_m8/_c_o_m9')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
154 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
155 (b'data/c.x/co.x/com.x/com0.x/com1.x/com2.x/com3.x/com4.x/com5.x/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
156 b'com6.x/com7.x/com8.x/com9.x'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
157 (b'data/c.x/co.x/com.x/com0.x/co~6d1.x/co~6d2.x/co~6d3.x/co~6d4.x' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
158 b'/co~6d5.x/co~6d6.x/co~6d7.x/co~6d8.x/co~6d9.x')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
159 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
160 (b'data/x.c/x.co/x.com0/x.com1/x.com2/x.com3/x.com4/x.com5/x.com6' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
161 b'/x.com7/x.com8/x.com9'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
162 (b'data/x.c/x.co/x.com0/x.com1/x.com2/x.com3/x.com4/x.com5/x.com6' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
163 b'/x.com7/x.com8/x.com9')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
164 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
165 (b'data/cx/cox/comx/com0x/com1x/com2x/com3x/com4x/com5x/com6x/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
166 b'com7x/com8x/com9x'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
167 (b'data/cx/cox/comx/com0x/com1x/com2x/com3x/com4x/com5x/com6x/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
168 b'com7x/com8x/com9x')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
169 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
170 (b'data/xc/xco/xcom0/xcom1/xcom2/xcom3/xcom4/xcom5/xcom6/xcom7/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
171 b'xcom8/xcom9'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
172 (b'data/xc/xco/xcom0/xcom1/xcom2/xcom3/xcom4/xcom5/xcom6/xcom7/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
173 b'xcom8/xcom9')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
174 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
175 b'data/l/lp/lpt/lpt0/lpt1/lpt2/lpt3/lpt4/lpt5/lpt6/lpt7/lpt8/lpt9', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
176 (b'data/l/lp/lpt/lpt0/lp~741/lp~742/lp~743/lp~744/lp~745/lp~746/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
177 b'lp~747/lp~748/lp~749')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
178 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
179 b'data/L/LP/LPT/LPT0/LPT1/LPT2/LPT3/LPT4/LPT5/LPT6/LPT7/LPT8/LPT9', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
180 (b'data/_l/_l_p/_l_p_t/_l_p_t0/_l_p_t1/_l_p_t2/_l_p_t3/_l_p_t4/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
181 b'_l_p_t5/_l_p_t6/_l_p_t7/_l_p_t8/_l_p_t9')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
182 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
183 (b'data/l.x/lp.x/lpt.x/lpt0.x/lpt1.x/lpt2.x/lpt3.x/lpt4.x/lpt5.x/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
184 b'lpt6.x/lpt7.x/lpt8.x/lpt9.x'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
185 (b'data/l.x/lp.x/lpt.x/lpt0.x/lp~741.x/lp~742.x/lp~743.x/lp~744.x/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
186 b'lp~745.x/lp~746.x/lp~747.x/lp~748.x/lp~749.x')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
187 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
188 (b'data/x.l/x.lp/x.lpt/x.lpt0/x.lpt1/x.lpt2/x.lpt3/x.lpt4/x.lpt5/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
189 b'x.lpt6/x.lpt7/x.lpt8/x.lpt9'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
190 (b'data/x.l/x.lp/x.lpt/x.lpt0/x.lpt1/x.lpt2/x.lpt3/x.lpt4/x.lpt5' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
191 b'/x.lpt6/x.lpt7/x.lpt8/x.lpt9')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
192 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
193 (b'data/lx/lpx/lptx/lpt0x/lpt1x/lpt2x/lpt3x/lpt4x/lpt5x/lpt6x/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
194 b'lpt7x/lpt8x/lpt9x'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
195 (b'data/lx/lpx/lptx/lpt0x/lpt1x/lpt2x/lpt3x/lpt4x/lpt5x/lpt6x/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
196 b'lpt7x/lpt8x/lpt9x')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
197 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
198 (b'data/xl/xlp/xlpt/xlpt0/xlpt1/xlpt2/xlpt3/xlpt4/xlpt5/xlpt6/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
199 b'xlpt7/xlpt8/xlpt9'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
200 (b'data/xl/xlp/xlpt/xlpt0/xlpt1/xlpt2/xlpt3/xlpt4/xlpt5/xlpt6/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
201 b'xlpt7/xlpt8/xlpt9')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
202 self.hybridencode(b'data/con/p/pr/prn/a/au/aux/n/nu/nul', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
203 b'data/co~6e/p/pr/pr~6e/a/au/au~78/n/nu/nu~6c') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
204 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
205 b'data/CON/P/PR/PRN/A/AU/AUX/N/NU/NUL', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
206 b'data/_c_o_n/_p/_p_r/_p_r_n/_a/_a_u/_a_u_x/_n/_n_u/_n_u_l') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
207 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
208 b'data/con.x/p.x/pr.x/prn.x/a.x/au.x/aux.x/n.x/nu.x/nul.x', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
209 b'data/co~6e.x/p.x/pr.x/pr~6e.x/a.x/au.x/au~78.x/n.x/nu.x/nu~6c.x') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
210 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
211 b'data/x.con/x.p/x.pr/x.prn/x.a/x.au/x.aux/x.n/x.nu/x.nul', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
212 b'data/x.con/x.p/x.pr/x.prn/x.a/x.au/x.aux/x.n/x.nu/x.nul') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
213 self.hybridencode(b'data/conx/px/prx/prnx/ax/aux/auxx/nx/nux/nulx', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
214 b'data/conx/px/prx/prnx/ax/au~78/auxx/nx/nux/nulx') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
215 self.hybridencode(b'data/xcon/xp/xpr/xprn/xa/xau/xaux/xn/xnu/xnul', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
216 b'data/xcon/xp/xpr/xprn/xa/xau/xaux/xn/xnu/xnul') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
217 self.hybridencode(b'data/a./au./aux./auxy./aux.', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
218 b'data/a~2e/au~2e/au~78~2e/auxy~2e/au~78~2e') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
219 self.hybridencode(b'data/c./co./con./cony./con.', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
220 b'data/c~2e/co~2e/co~6e~2e/cony~2e/co~6e~2e') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
221 self.hybridencode(b'data/p./pr./prn./prny./prn.', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
222 b'data/p~2e/pr~2e/pr~6e~2e/prny~2e/pr~6e~2e') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
223 self.hybridencode(b'data/n./nu./nul./nuly./nul.', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
224 b'data/n~2e/nu~2e/nu~6c~2e/nuly~2e/nu~6c~2e') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
225 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
226 b'data/l./lp./lpt./lpt1./lpt1y./lpt1.', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
227 b'data/l~2e/lp~2e/lpt~2e/lp~741~2e/lpt1y~2e/lp~741~2e') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
228 self.hybridencode(b'data/lpt9./lpt9y./lpt9.', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
229 b'data/lp~749~2e/lpt9y~2e/lp~749~2e') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
230 self.hybridencode(b'data/com./com1./com1y./com1.', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
231 b'data/com~2e/co~6d1~2e/com1y~2e/co~6d1~2e') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
232 self.hybridencode(b'data/com9./com9y./com9.', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
233 b'data/co~6d9~2e/com9y~2e/co~6d9~2e') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
234 self.hybridencode(b'data/a /au /aux /auxy /aux ', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
235 b'data/a~20/au~20/aux~20/auxy~20/aux~20') |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
236 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
237 def testhashingboundarycases(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
238 # largest unhashed path |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
239 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
240 (b'data/123456789-123456789-123456789-123456789-123456789-unhashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
241 b'--xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
242 (b'data/123456789-123456789-123456789-123456789-123456789-unhashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
243 b'--xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12345')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
244 # shortest hashed path |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
245 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
246 (b'data/123456789-123456789-123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
247 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
248 (b'dh/123456789-123456789-123456789-123456789-123456789-hashed---' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
249 b'-xxxxxxxxx-xxxxxxxe9c55002b50bf5181e7a6fc1f60b126e2a6fcf71')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
250 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
251 def testhashing(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
252 # changing one char in part that's hashed away produces a different hash |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
253 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
254 (b'data/123456789-123456789-123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
255 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxy-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
256 (b'dh/123456789-123456789-123456789-123456789-123456789-hashed---' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
257 b'-xxxxxxxxx-xxxxxxxd24fa4455faf8a94350c18e5eace7c2bb17af706')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
258 # uppercase hitting length limit due to encoding |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
259 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
260 (b'data/A23456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
261 b'xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
262 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
263 (b'dh/a23456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
264 b'xxxxxxxxx-xxxxxxxxx-xxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
265 b'cbbc657029b41b94ed510d05feb6716a5c03bc6b')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
266 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
267 (b'data/Z23456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
268 b'xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
269 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
270 (b'dh/z23456789-123456789-123456789-123456789-123456789-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
271 b'-xxxxxxxxx-xxxxxxx938f32a725c89512833fb96b6602dd9ebff51ddd')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
272 # compare with lowercase not hitting limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
273 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
274 (b'data/a23456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
275 b'xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
276 b'12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
277 (b'data/a23456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
278 b'xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
279 b'12345')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
280 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
281 (b'data/z23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
282 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
283 b'-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
284 (b'data/z23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
285 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
286 b'12345')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
287 # not hitting limit with any of these |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
288 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
289 (b'data/abcdefghijklmnopqrstuvwxyz0123456789 !#%&\'()+,-.;=[]^`{}' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
290 b'xxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
291 (b'data/abcdefghijklmnopqrstuvwxyz0123456789 !#%&\'()+,-.;=[]^`{}' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
292 b'xxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12345')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
293 # underbar hitting length limit due to encoding |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
294 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
295 (b'data/_23456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
296 b'xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
297 b'12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
298 (b'dh/_23456789-123456789-123456789-123456789-123456789-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
299 b'xxxxxxxxx-xxxxxxx9921a01af50feeabc060ce00eee4cba6efc31d2b')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
300 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
301 # tilde hitting length limit due to encoding |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
302 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
303 (b'data/~23456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
304 b'xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
305 b'12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
306 (b'dh/~7e23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
307 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
308 b'9cec6f97d569c10995f785720044ea2e4227481b')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
309 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
310 def testwinreservedoverlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
311 # Windows reserved characters hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
312 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
313 (b'data/<23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
314 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
315 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
316 (b'dh/~3c23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
317 b'-xxxxxxxxx-xxxxxxxxx-xxxxxee' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
318 b'67d8f275876ca1ef2500fc542e63c885c4e62d')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
319 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
320 (b'data/>23456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
321 b'xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
322 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
323 (b'dh/~3e23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
324 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
325 b'387a85a5b1547cc9136310c974df716818458ddb')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
326 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
327 (b'data/:23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
328 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
329 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
330 (b'dh/~3a23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
331 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
332 b'2e4154fb571d13d22399c58cc4ef4858e4b75999')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
333 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
334 (b'data/"23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
335 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
336 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
337 (b'dh/~2223456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
338 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
339 b'fc7e3ec7b0687ee06ed8c32fef0eb0c1980259f5')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
340 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
341 (b'data/\\23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
342 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
343 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
344 (b'dh/~5c23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
345 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
346 b'944e1f2b7110687e116e0d151328ac648b06ab4a')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
347 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
348 (b'data/|23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
349 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
350 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
351 (b'dh/~7c23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
352 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
353 b'28b23dd3fd0242946334126ab62bcd772aac32f4')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
354 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
355 (b'data/?23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
356 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
357 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
358 (b'dh/~3f23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
359 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
360 b'a263022d3994d2143d98f94f431eef8b5e7e0f8a')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
361 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
362 (b'data/*23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
363 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
364 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
365 (b'dh/~2a23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
366 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
367 b'0e7e6020e3c00ba7bb7893d84ca2966fbf53e140')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
368 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
369 def testinitialspacelenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
370 # initial space hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
371 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
372 (b'data/ 23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
373 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
374 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
375 (b'dh/~2023456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
376 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
377 b'92acbc78ef8c0b796111629a02601f07d8aec4ea')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
378 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
379 def testinitialdotlenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
380 # initial dot hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
381 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
382 (b'data/.23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
383 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
384 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
385 (b'dh/~2e23456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
386 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
387 b'dbe19cc6505b3515ab9228cebf877ad07075168f')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
388 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
389 def testtrailingspacelenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
390 # trailing space in filename hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
391 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
392 (b'data/123456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
393 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
394 b'123456789-1234 '), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
395 (b'dh/123456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
396 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
397 b'0025dc73e04f97426db4893e3bf67d581dc6d066')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
398 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
399 def testtrailingdotlenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
400 # trailing dot in filename hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
401 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
402 (b'data/123456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
403 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
404 b'1234.'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
405 (b'dh/123456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
406 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
407 b'85a16cf03ee7feba8a5abc626f1ba9886d01e89d')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
408 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
409 def testinitialspacedirlenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
410 # initial space in directory hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
411 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
412 (b'data/ x/456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
413 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
414 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
415 (b'dh/~20x/456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
416 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
417 b'1b3a3b712b2ac00d6af14ae8b4c14fdbf904f516')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
418 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
419 def testinitialdotdirlenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
420 # initial dot in directory hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
421 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
422 (b'data/.x/456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
423 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
424 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
425 (b'dh/~2ex/456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
426 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
427 b'39dbc4c193a5643a8936fc69c3363cd7ac91ab14')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
428 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
429 def testtrailspacedirlenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
430 # trailing space in directory hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
431 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
432 (b'data/x /456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
433 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
434 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
435 (b'dh/x~20/456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
436 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
437 b'2253c341df0b5290790ad312cd8499850f2273e5')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
438 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
439 def testtrailingdotdirlenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
440 # trailing dot in directory hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
441 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
442 (b'data/x./456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
443 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
444 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
445 (b'dh/x~2e/456789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
446 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
447 b'cc0324d696d34562b44b5138db08ee1594ccc583')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
448 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
449 def testdirencodinglenlimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
450 # with directories that need direncoding, hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
451 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
452 (b'data/x.i/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
453 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
454 b'12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
455 (b'dh/x.i.hg/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
456 b'-xxxxxxxxx-xxxxxxxxx-xxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
457 b'a4c4399bdf81c67dbbbb7060aa0124d8dea94f74')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
458 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
459 (b'data/x.d/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
460 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
461 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
462 (b'dh/x.d.hg/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
463 b'-xxxxxxxxx-xxxxxxxxx-xxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
464 b'1303fa90473b230615f5b3ea7b660e881ae5270a')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
465 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
466 (b'data/x.hg/5789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
467 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
468 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
469 (b'dh/x.hg.hg/5789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
470 b'-xxxxxxxxx-xxxxxxxxx-xxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
471 b'26d724a8af68e7a4e4455e6602ea9adbd0eb801f')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
472 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
473 def testwinreservedfilenameslimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
474 # Windows reserved filenames, hitting length limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
475 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
476 (b'data/con/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
477 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
478 b'123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
479 (b'dh/co~6e/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
480 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
481 b'c0794d4f4c605a2617900eb2563d7113cf6ea7d3')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
482 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
483 (b'data/prn/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
484 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
485 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
486 (b'dh/pr~6e/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
487 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
488 b'64db876e1a9730e27236cb9b167aff942240e932')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
489 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
490 (b'data/aux/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
491 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
492 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
493 (b'dh/au~78/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
494 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
495 b'8a178558405ca6fb4bbd75446dfa186f06751a0d')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
496 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
497 (b'data/nul/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
498 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
499 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
500 (b'dh/nu~6c/56789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
501 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
502 b'c5e51b6fec1bd07bd243b053a0c3f7209855b886')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
503 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
504 (b'data/com1/6789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
505 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
506 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
507 (b'dh/co~6d1/6789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
508 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
509 b'32f5f44ece3bb62b9327369ca84cc19c86259fcd')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
510 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
511 (b'data/com9/6789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
512 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
513 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
514 (b'dh/co~6d9/6789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
515 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
516 b'734360b28c66a3230f55849fe8926206d229f990')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
517 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
518 (b'data/lpt1/6789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
519 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
520 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
521 (b'dh/lp~741/6789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
522 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
523 b'e6f16ab4b6b0637676b2842b3345c9836df46ef7')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
524 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
525 (b'data/lpt9/6789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
526 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
527 b'-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
528 (b'dh/lp~749/6789-123456789-123456789-123456789-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
529 b'-xxxxxxxxx-xxxxxxxxx-xxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
530 b'a475814c51acead3e44f2ff801f0c4903f986157')) |
17440
5be041254a2e
test-hybridencode: add more testcases for hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17432
diff
changeset
|
531 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
532 def testnonreservednolimit(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
533 # non-reserved names, just not hitting limit |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
534 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
535 (b'data/123456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
536 b'/com/com0/lpt/lpt0/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
537 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12345'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
538 (b'data/123456789-123456789-123456789-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
539 b'/com/com0/lpt/lpt0/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
540 b'-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12345')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
541 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
542 def testhashedpathuntrucfirst(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
543 # hashed path with largest untruncated 1st dir |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
544 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
545 (b'data/12345678/-123456789-123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
546 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
547 (b'dh/12345678/-123456789-123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
548 b'----xxxxxxxxx-xxxxxxx4e9e9e384d00929a93b6835fbf976eb32321ff3c')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
549 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
550 def testhashedpathsmallesttrucdir(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
551 # hashed path with smallest truncated 1st dir |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
552 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
553 (b'data/123456789/123456789-123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
554 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
555 (b'dh/12345678/123456789-123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
556 b'----xxxxxxxxx-xxxxxxxx1f4e4ec5f2be76e109bfaa8e31c062fe426d5490')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
557 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
558 def testhashedlargesttwountruc(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
559 # hashed path with largest untruncated two dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
560 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
561 (b'data/12345678/12345678/9-123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
562 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
563 (b'dh/12345678/12345678/9-123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
564 b'----xxxxxxxxx-xxxxxxx3332d8329d969cf835542a9f2cbcfb385b6cf39d')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
565 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
566 def testhashedpathsmallesttrunctwodirs(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
567 # hashed path with smallest truncated two dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
568 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
569 (b'data/123456789/123456789/123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
570 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
571 (b'dh/12345678/12345678/123456789-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
572 b'----xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
573 b'9699559798247dffa18717138859be5f8874840e')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
574 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
575 def testhashuntruncthree(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
576 # hashed path with largest untruncated three dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
577 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
578 (b'data/12345678/12345678/12345678/89-123456789-123456789-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
579 b'hashed----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
580 b'123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
581 (b'dh/12345678/12345678/12345678/89-123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
582 b'----xxxxxxxxx-xxxxxxxf0a2b053bb1369cce02f78c217d6a7aaea18c439')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
583 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
584 def testhashtruncthree(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
585 # hashed path with smallest truncated three dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
586 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
587 (b'data/123456789/123456789/123456789/123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
588 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
589 (b'dh/12345678/12345678/12345678/123456789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
590 b'----xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
591 b'1c6f8284967384ec13985a046d3553179d9d03cd')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
592 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
593 def testhashuntrucfour(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
594 # hashed path with largest untruncated four dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
595 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
596 (b'data/12345678/12345678/12345678/12345678/789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
597 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
598 (b'dh/12345678/12345678/12345678/12345678/789-123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
599 b'----xxxxxxxxx-xxxxxxx0d30c99049d8f0ff97b94d4ef302027e8d54c6fd')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
600 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
601 def testhashtruncfour(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
602 # hashed path with smallest truncated four dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
603 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
604 (b'data/123456789/123456789/123456789/123456789/123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
605 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
606 (b'dh/12345678/12345678/12345678/12345678/123456789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
607 b'----xxxxxxxxx-xxxxxxxxx-x' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
608 b'46162779e1a771810b37a737f82ae7ed33771402')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
609 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
610 def testhashuntruncfive(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
611 # hashed path with largest untruncated five dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
612 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
613 (b'data/12345678/12345678/12345678/12345678/12345678/6789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
614 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
615 (b'dh/12345678/12345678/12345678/12345678/12345678/6789-hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
616 b'----xxxxxxxxx-xxxxxxxbfe752ddc8b003c2790c66a9f2eb1ea75c114390')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
617 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
618 def testhashtruncfive(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
619 # hashed path with smallest truncated five dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
620 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
621 (b'data/123456789/123456789/123456789/123456789/123456789/hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
622 b'----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
623 (b'dh/12345678/12345678/12345678/12345678/12345678/hashed' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
624 b'----xxxxxxxxx-xxxxxxxxx-xx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
625 b'b94c27b3532fa880cdd572b1c514785cab7b6ff2')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
626 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
627 def testhashuntruncsix(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
628 # hashed path with largest untruncated six dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
629 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
630 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
631 b'ed----xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
632 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
633 b'ed----xxxxxxxxx-xxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
634 b'cd8cc5483a0f3be409e0e5d4bf9e36e113c59235')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
635 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
636 def testhashtruncsix(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
637 # hashed path with smallest truncated six dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
638 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
639 (b'data/123456789/123456789/123456789/123456789/123456789/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
640 b'123456789/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
641 b'123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
642 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
643 b'xxxxxxxxx-xxxxxxxxx-xxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
644 b'47dd6f616f833a142da00701b334cebbf640da06')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
645 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
646 def testhashuntrunc7(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
647 # hashed path with largest untruncated seven dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
648 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
649 (b'data/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
650 b'/12345678/xxxxxx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
651 b'123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
652 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
653 b'/12345678/xxxxxx-xxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
654 b'1c8ed635229fc22efe51035feeadeb4c8a0ecb82')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
655 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
656 def testhashtrunc7(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
657 # hashed path with smallest truncated seven dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
658 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
659 (b'data/123456789/123456789/123456789/123456789/123456789/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
660 b'123456789/123456789/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
661 b'xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
662 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/123' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
663 b'45678/xxxxxxxxx-xxxx298ff7d33f8ce6db57930837ffea2fb2f48bb926')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
664 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
665 def testhashuntrunc8(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
666 # hashed path with largest untruncated eight dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
667 # (directory 8 is dropped because it hits _maxshortdirslen) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
668 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
669 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
670 b'12345678/12345678/xxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
671 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/1' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
672 b'2345678/xxxxxxx-xxxxxxc8996ccd41b471f768057181a4d59d2febe7277d')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
673 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
674 def testhashtrunc8(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
675 # hashed path with smallest truncated eight dirs |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
676 # (directory 8 is dropped because it hits _maxshortdirslen) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
677 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
678 (b'data/123456789/123456789/123456789/123456789/123456789/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
679 b'123456789/123456789/123456789/xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
680 b'123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
681 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
682 b'/12345678/xxxxxxxxx-xxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
683 b'4fa04a839a6bda93e1c21c713f2edcbd16e8890d')) |
17452
4aec89d4faa2
test-hybridencode: testing dir levels and dir prefix lenghts of hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17445
diff
changeset
|
684 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
685 def testhashnondropped8(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
686 # hashed path with largest non-dropped directory 8 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
687 # (just not hitting the _maxshortdirslen boundary) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
688 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
689 (b'data/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
690 b'/12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
691 b'-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
692 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
693 b'/12345678/12345/-xxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
694 b'4d43d1ccaa20efbfe99ec779dc063611536ff2c5')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
695 # ...adding one truncated char to dir 1..7 won't drop dir 8 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
696 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
697 (b'data/12345678x/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
698 b'/12345678/12345/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
699 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/1234' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
700 b'5678/12345/xxxxxxxx0f9efce65189cc60fd90fe4ffd49d7b58bbe0f2e')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
701 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
702 (b'data/12345678/12345678x/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
703 b'/12345678/12345/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
704 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/1234' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
705 b'5678/12345/xxxxxxxx945ca395708cafdd54a94501859beabd3e243921')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
706 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
707 (b'data/12345678/12345678/12345678x/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
708 b'345678/12345/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
709 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/1234' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
710 b'5678/12345/xxxxxxxxac62bf6898c4fd0502146074547c11caa751a327')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
711 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
712 (b'data/12345678/12345678/12345678/12345678x/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
713 b'345678/12345/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
714 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/1234' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
715 b'5678/12345/xxxxxxxx2ae5a2baed7983fae8974d0ca06c6bf08b9aee92')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
716 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
717 (b'data/12345678/12345678/12345678/12345678/12345678x/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
718 b'12345678/12345/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
719 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/1234' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
720 b'5678/12345/xxxxxxxx214aba07b6687532a43d1e9eaf6e88cfca96b68c')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
721 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
722 (b'data/12345678/12345678/12345678/12345678/12345678/12345678x' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
723 b'/12345678/12345/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
724 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/1234' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
725 b'5678/12345/xxxxxxxxe7a022ae82f0f55cf4e0498e55ba59ea4ebb55bf')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
726 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
727 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
728 b'12345678x/12345/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
729 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12345' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
730 b'678/12345/xxxxxxxxb51ce61164996a80f36ce3cfe64b62d519aedae3')) |
17453
97899a01d3e5
test-hybridencode: adding one truncated char to dir 1..7 won't drop dir 8
Adrian Buehlmann <adrian@cadifra.com>
parents:
17452
diff
changeset
|
731 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
732 def testhashedpathshortestdropped8(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
733 # hashed path with shortest dropped directory 8 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
734 # (just hitting the _maxshortdirslen boundary) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
735 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
736 (b'data/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
737 b'/12345678/123456/xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
738 b'123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
739 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
740 b'/12345678/xxxxxxxxx-xxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
741 b'11fa9873cc6c3215eae864528b5530a04efc6cfe')) |
17457
467e487f393f
test-hybridencode: dropping dir eight in hashed path due to dot or space at end
Adrian Buehlmann <adrian@cadifra.com>
parents:
17453
diff
changeset
|
742 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
743 def testhashedpathdropsdir8fortrailingdotspace(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
744 # hashed path that drops dir 8 due to dot or space at end is |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
745 # encoded, and thus causing to hit _maxshortdirslen |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
746 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
747 (b'data/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
748 b'/12345678/1234./-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
749 b'123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
750 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
751 b'/12345678/-xxxxxxxxx-xxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
752 b'602df9b45bec564e2e1f0645d5140dddcc76ed58')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
753 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
754 (b'data/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
755 b'/12345678/1234 /-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
756 b'123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
757 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
758 b'/12345678/-xxxxxxxxx-xxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
759 b'd99ff212bc84b4d1f70cd6b0071e3ef69d4e12ce')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
760 # ... with dir 8 short enough for encoding |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
761 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
762 (b'data/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
763 b'/12345678/12./xx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
764 b'-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
765 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
766 b'/12345678/12~2e/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
767 b'xx-xxxxx7baeb5ed7f14a586ee1cacecdbcbff70032d1b3c')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
768 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
769 (b'data/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
770 b'/12345678/12 ' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
771 b'/xx-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-123456'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
772 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
773 b'/12345678/12~20/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
774 b'xx-xxxxxcf79ca9795f77d7f75745da36807e5d772bd5182')) |
17459
f4d15f3b96c0
test-hybridencode: extensions are replicated on hashed paths
Adrian Buehlmann <adrian@cadifra.com>
parents:
17457
diff
changeset
|
775 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
776 def testextensionsreplicatedonhashedpaths(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
777 # Extensions are replicated on hashed paths. Note that |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
778 # we only get to encode files that end in .i or .d inside the |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
779 # store. Encoded filenames are thus bound in length. |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
780 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
781 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
782 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
783 b'45.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
784 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
785 b'345678/12345/-xxxxxc10ad03b5755ed524f5286aab1815dfe07729438.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
786 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
787 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
788 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
789 b'45.d'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
790 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
791 b'345678/12345/-xxxxx9eec83381f2b39ef5ac8b4ecdf2c94f7983f57c8.d')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
792 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
793 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
794 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
795 b'456.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
796 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
797 b'345678/12345/-xxxxxb7796dc7d175cfb0bb8a7728f58f6ebec9042568.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
798 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
799 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
800 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
801 b'4567.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
802 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
803 b'345678/12345/-xxxxxb515857a6bfeef017c4894d8df42458ac65d55b8.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
804 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
805 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
806 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
807 b'45678.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
808 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
809 b'345678/12345/-xxxxxb05a0f247bc0a776211cd6a32ab714fd9cc09f2b.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
810 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
811 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
812 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
813 b'456789.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
814 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
815 b'345678/12345/-xxxxxf192b48bff08d9e0e12035fb52bc58c70de72c94.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
816 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
817 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
818 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
819 b'456789-.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
820 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
821 b'345678/12345/-xxxxx435551e0ed4c7b083b9ba83cee916670e02e80ad.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
822 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
823 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
824 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
825 b'456789-1.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
826 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
827 b'345678/12345/-xxxxxa7f74eb98d8d58b716356dfd26e2f9aaa65d6a9a.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
828 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
829 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
830 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
831 b'456789-12.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
832 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
833 b'345678/12345/-xxxxxed68d9bd43b931f0b100267fee488d65a0c66f62.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
834 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
835 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
836 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
837 b'456789-123.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
838 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
839 b'345678/12345/-xxxxx5cea44de2b642d2ba2b4a30693ffb1049644d698.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
840 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
841 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
842 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
843 b'456789-1234.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
844 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
845 b'345678/12345/-xxxxx68462f62a7f230b39c1b5400d73ec35920990b7e.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
846 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
847 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
848 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
849 b'456789-12345.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
850 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
851 b'345678/12345/-xxxxx4cb852a314c6da240a83eec94761cdd71c6ec22e.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
852 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
853 (b'data/12345678/12345678/12345678/12345678/12345678/12345678/' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
854 b'12345678/12345/-xxxxxxxxx-xxxxxxxxx-xxxxxxxxx-123456789-12.3' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
855 b'456789-12345-ABCDEFGHIJKLMNOPRSTUVWXYZ-' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
856 b'abcdefghjiklmnopqrstuvwxyz-ABCDEFGHIJKLMNOPRSTUVWXYZ' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
857 b'-1234567890-xxxxxxxxx-xxxxxxxxx-xxxxxxxx' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
858 b'-xxxxxxxxx-wwwwwwwww-wwwwwwwww-wwwwwwwww-wwwwwwwww' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
859 b'-wwwwwwwww-wwwwwwwww-wwwwwwwww-wwwwwwwww-wwwwwwwww.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
860 (b'dh/12345678/12345678/12345678/12345678/12345678/12345678/12' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
861 b'345678/12345/-xxxxx93352aa50377751d9e5ebdf52da1e6e69a6887a6.i')) |
25027
297ea0df75d0
pathencode: for long paths, strip first 5 chars, not first dir
Martin von Zweigbergk <martinvonz@google.com>
parents:
18435
diff
changeset
|
862 |
37871
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
863 def testpathsoutsidedata(self): |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
864 # paths outside data/ can be encoded |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
865 self.hybridencode(b'metadata/dir/00manifest.i', |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
866 b'metadata/dir/00manifest.i') |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
867 self.hybridencode( |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
868 (b'metadata/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
869 b'/12345678/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
870 b'/12345678/12345678/00manifest.i'), |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
871 (b'dh/ata/12345678/12345678/12345678/12345678/12345678' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
872 b'/12345678/12345678/00manife' |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
873 b'0a4da1f89aa2aa9eb0896eb451288419049781b4.i')) |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
874 |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
875 if __name__ == '__main__': |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
876 import silenttestrunner |
6574c81b6831
tests: port test-hybridencode.py to unittest
Augie Fackler <augie@google.com>
parents:
28750
diff
changeset
|
877 silenttestrunner.main(__name__) |