##// END OF EJS Templates
hghave: add a check for lfs-test-server...
Matt Harbison -
r35137:a2e927de default
parent child Browse files
Show More
@@ -1,691 +1,702
1 1 from __future__ import absolute_import
2 2
3 3 import errno
4 4 import os
5 5 import re
6 6 import socket
7 7 import stat
8 8 import subprocess
9 9 import sys
10 10 import tempfile
11 11
12 12 tempprefix = 'hg-hghave-'
13 13
14 14 checks = {
15 15 "true": (lambda: True, "yak shaving"),
16 16 "false": (lambda: False, "nail clipper"),
17 17 }
18 18
19 19 def check(name, desc):
20 20 """Registers a check function for a feature."""
21 21 def decorator(func):
22 22 checks[name] = (func, desc)
23 23 return func
24 24 return decorator
25 25
26 26 def checkvers(name, desc, vers):
27 27 """Registers a check function for each of a series of versions.
28 28
29 29 vers can be a list or an iterator"""
30 30 def decorator(func):
31 31 def funcv(v):
32 32 def f():
33 33 return func(v)
34 34 return f
35 35 for v in vers:
36 36 v = str(v)
37 37 f = funcv(v)
38 38 checks['%s%s' % (name, v.replace('.', ''))] = (f, desc % v)
39 39 return func
40 40 return decorator
41 41
42 42 def checkfeatures(features):
43 43 result = {
44 44 'error': [],
45 45 'missing': [],
46 46 'skipped': [],
47 47 }
48 48
49 49 for feature in features:
50 50 negate = feature.startswith('no-')
51 51 if negate:
52 52 feature = feature[3:]
53 53
54 54 if feature not in checks:
55 55 result['missing'].append(feature)
56 56 continue
57 57
58 58 check, desc = checks[feature]
59 59 try:
60 60 available = check()
61 61 except Exception:
62 62 result['error'].append('hghave check failed: %s' % feature)
63 63 continue
64 64
65 65 if not negate and not available:
66 66 result['skipped'].append('missing feature: %s' % desc)
67 67 elif negate and available:
68 68 result['skipped'].append('system supports %s' % desc)
69 69
70 70 return result
71 71
72 72 def require(features):
73 73 """Require that features are available, exiting if not."""
74 74 result = checkfeatures(features)
75 75
76 76 for missing in result['missing']:
77 77 sys.stderr.write('skipped: unknown feature: %s\n' % missing)
78 78 for msg in result['skipped']:
79 79 sys.stderr.write('skipped: %s\n' % msg)
80 80 for msg in result['error']:
81 81 sys.stderr.write('%s\n' % msg)
82 82
83 83 if result['missing']:
84 84 sys.exit(2)
85 85
86 86 if result['skipped'] or result['error']:
87 87 sys.exit(1)
88 88
89 89 def matchoutput(cmd, regexp, ignorestatus=False):
90 90 """Return the match object if cmd executes successfully and its output
91 91 is matched by the supplied regular expression.
92 92 """
93 93 r = re.compile(regexp)
94 94 try:
95 95 p = subprocess.Popen(
96 96 cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
97 97 except OSError as e:
98 98 if e.errno != errno.ENOENT:
99 99 raise
100 100 ret = -1
101 101 ret = p.wait()
102 102 s = p.stdout.read()
103 103 return (ignorestatus or not ret) and r.search(s)
104 104
105 105 @check("baz", "GNU Arch baz client")
106 106 def has_baz():
107 107 return matchoutput('baz --version 2>&1', br'baz Bazaar version')
108 108
109 109 @check("bzr", "Canonical's Bazaar client")
110 110 def has_bzr():
111 111 try:
112 112 import bzrlib
113 113 import bzrlib.bzrdir
114 114 import bzrlib.errors
115 115 import bzrlib.revision
116 116 import bzrlib.revisionspec
117 117 bzrlib.revisionspec.RevisionSpec
118 118 return bzrlib.__doc__ is not None
119 119 except (AttributeError, ImportError):
120 120 return False
121 121
122 122 @checkvers("bzr", "Canonical's Bazaar client >= %s", (1.14,))
123 123 def has_bzr_range(v):
124 124 major, minor = v.split('.')[0:2]
125 125 try:
126 126 import bzrlib
127 127 return (bzrlib.__doc__ is not None
128 128 and bzrlib.version_info[:2] >= (int(major), int(minor)))
129 129 except ImportError:
130 130 return False
131 131
132 132 @check("chg", "running with chg")
133 133 def has_chg():
134 134 return 'CHGHG' in os.environ
135 135
136 136 @check("cvs", "cvs client/server")
137 137 def has_cvs():
138 138 re = br'Concurrent Versions System.*?server'
139 139 return matchoutput('cvs --version 2>&1', re) and not has_msys()
140 140
141 141 @check("cvs112", "cvs client/server 1.12.* (not cvsnt)")
142 142 def has_cvs112():
143 143 re = br'Concurrent Versions System \(CVS\) 1.12.*?server'
144 144 return matchoutput('cvs --version 2>&1', re) and not has_msys()
145 145
146 146 @check("cvsnt", "cvsnt client/server")
147 147 def has_cvsnt():
148 148 re = br'Concurrent Versions System \(CVSNT\) (\d+).(\d+).*\(client/server\)'
149 149 return matchoutput('cvsnt --version 2>&1', re)
150 150
151 151 @check("darcs", "darcs client")
152 152 def has_darcs():
153 153 return matchoutput('darcs --version', br'\b2\.([2-9]|\d{2})', True)
154 154
155 155 @check("mtn", "monotone client (>= 1.0)")
156 156 def has_mtn():
157 157 return matchoutput('mtn --version', br'monotone', True) and not matchoutput(
158 158 'mtn --version', br'monotone 0\.', True)
159 159
160 160 @check("eol-in-paths", "end-of-lines in paths")
161 161 def has_eol_in_paths():
162 162 try:
163 163 fd, path = tempfile.mkstemp(dir='.', prefix=tempprefix, suffix='\n\r')
164 164 os.close(fd)
165 165 os.remove(path)
166 166 return True
167 167 except (IOError, OSError):
168 168 return False
169 169
170 170 @check("execbit", "executable bit")
171 171 def has_executablebit():
172 172 try:
173 173 EXECFLAGS = stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH
174 174 fh, fn = tempfile.mkstemp(dir='.', prefix=tempprefix)
175 175 try:
176 176 os.close(fh)
177 177 m = os.stat(fn).st_mode & 0o777
178 178 new_file_has_exec = m & EXECFLAGS
179 179 os.chmod(fn, m ^ EXECFLAGS)
180 180 exec_flags_cannot_flip = ((os.stat(fn).st_mode & 0o777) == m)
181 181 finally:
182 182 os.unlink(fn)
183 183 except (IOError, OSError):
184 184 # we don't care, the user probably won't be able to commit anyway
185 185 return False
186 186 return not (new_file_has_exec or exec_flags_cannot_flip)
187 187
188 188 @check("icasefs", "case insensitive file system")
189 189 def has_icasefs():
190 190 # Stolen from mercurial.util
191 191 fd, path = tempfile.mkstemp(dir='.', prefix=tempprefix)
192 192 os.close(fd)
193 193 try:
194 194 s1 = os.stat(path)
195 195 d, b = os.path.split(path)
196 196 p2 = os.path.join(d, b.upper())
197 197 if path == p2:
198 198 p2 = os.path.join(d, b.lower())
199 199 try:
200 200 s2 = os.stat(p2)
201 201 return s2 == s1
202 202 except OSError:
203 203 return False
204 204 finally:
205 205 os.remove(path)
206 206
207 207 @check("fifo", "named pipes")
208 208 def has_fifo():
209 209 if getattr(os, "mkfifo", None) is None:
210 210 return False
211 211 name = tempfile.mktemp(dir='.', prefix=tempprefix)
212 212 try:
213 213 os.mkfifo(name)
214 214 os.unlink(name)
215 215 return True
216 216 except OSError:
217 217 return False
218 218
219 219 @check("killdaemons", 'killdaemons.py support')
220 220 def has_killdaemons():
221 221 return True
222 222
223 223 @check("cacheable", "cacheable filesystem")
224 224 def has_cacheable_fs():
225 225 from mercurial import util
226 226
227 227 fd, path = tempfile.mkstemp(dir='.', prefix=tempprefix)
228 228 os.close(fd)
229 229 try:
230 230 return util.cachestat(path).cacheable()
231 231 finally:
232 232 os.remove(path)
233 233
234 234 @check("lsprof", "python lsprof module")
235 235 def has_lsprof():
236 236 try:
237 237 import _lsprof
238 238 _lsprof.Profiler # silence unused import warning
239 239 return True
240 240 except ImportError:
241 241 return False
242 242
243 243 def gethgversion():
244 244 m = matchoutput('hg --version --quiet 2>&1', br'(\d+)\.(\d+)')
245 245 if not m:
246 246 return (0, 0)
247 247 return (int(m.group(1)), int(m.group(2)))
248 248
249 249 @checkvers("hg", "Mercurial >= %s",
250 250 list([(1.0 * x) / 10 for x in range(9, 99)]))
251 251 def has_hg_range(v):
252 252 major, minor = v.split('.')[0:2]
253 253 return gethgversion() >= (int(major), int(minor))
254 254
255 255 @check("hg08", "Mercurial >= 0.8")
256 256 def has_hg08():
257 257 if checks["hg09"][0]():
258 258 return True
259 259 return matchoutput('hg help annotate 2>&1', '--date')
260 260
261 261 @check("hg07", "Mercurial >= 0.7")
262 262 def has_hg07():
263 263 if checks["hg08"][0]():
264 264 return True
265 265 return matchoutput('hg --version --quiet 2>&1', 'Mercurial Distributed SCM')
266 266
267 267 @check("hg06", "Mercurial >= 0.6")
268 268 def has_hg06():
269 269 if checks["hg07"][0]():
270 270 return True
271 271 return matchoutput('hg --version --quiet 2>&1', 'Mercurial version')
272 272
273 273 @check("gettext", "GNU Gettext (msgfmt)")
274 274 def has_gettext():
275 275 return matchoutput('msgfmt --version', br'GNU gettext-tools')
276 276
277 277 @check("git", "git command line client")
278 278 def has_git():
279 279 return matchoutput('git --version 2>&1', br'^git version')
280 280
281 281 def getgitversion():
282 282 m = matchoutput('git --version 2>&1', br'git version (\d+)\.(\d+)')
283 283 if not m:
284 284 return (0, 0)
285 285 return (int(m.group(1)), int(m.group(2)))
286 286
287 # https://github.com/git-lfs/lfs-test-server
288 @check("lfs-test-server", "git-lfs test server")
289 def has_lfsserver():
290 exe = 'lfs-test-server'
291 if has_windows():
292 exe = 'lfs-test-server.exe'
293 return any(
294 os.access(os.path.join(path, exe), os.X_OK)
295 for path in os.environ["PATH"].split(os.pathsep)
296 )
297
287 298 @checkvers("git", "git client (with ext::sh support) version >= %s", (1.9,))
288 299 def has_git_range(v):
289 300 major, minor = v.split('.')[0:2]
290 301 return getgitversion() >= (int(major), int(minor))
291 302
292 303 @check("docutils", "Docutils text processing library")
293 304 def has_docutils():
294 305 try:
295 306 import docutils.core
296 307 docutils.core.publish_cmdline # silence unused import
297 308 return True
298 309 except ImportError:
299 310 return False
300 311
301 312 def getsvnversion():
302 313 m = matchoutput('svn --version --quiet 2>&1', br'^(\d+)\.(\d+)')
303 314 if not m:
304 315 return (0, 0)
305 316 return (int(m.group(1)), int(m.group(2)))
306 317
307 318 @checkvers("svn", "subversion client and admin tools >= %s", (1.3, 1.5))
308 319 def has_svn_range(v):
309 320 major, minor = v.split('.')[0:2]
310 321 return getsvnversion() >= (int(major), int(minor))
311 322
312 323 @check("svn", "subversion client and admin tools")
313 324 def has_svn():
314 325 return matchoutput('svn --version 2>&1', br'^svn, version') and \
315 326 matchoutput('svnadmin --version 2>&1', br'^svnadmin, version')
316 327
317 328 @check("svn-bindings", "subversion python bindings")
318 329 def has_svn_bindings():
319 330 try:
320 331 import svn.core
321 332 version = svn.core.SVN_VER_MAJOR, svn.core.SVN_VER_MINOR
322 333 if version < (1, 4):
323 334 return False
324 335 return True
325 336 except ImportError:
326 337 return False
327 338
328 339 @check("p4", "Perforce server and client")
329 340 def has_p4():
330 341 return (matchoutput('p4 -V', br'Rev\. P4/') and
331 342 matchoutput('p4d -V', br'Rev\. P4D/'))
332 343
333 344 @check("symlink", "symbolic links")
334 345 def has_symlink():
335 346 if getattr(os, "symlink", None) is None:
336 347 return False
337 348 name = tempfile.mktemp(dir='.', prefix=tempprefix)
338 349 try:
339 350 os.symlink(".", name)
340 351 os.unlink(name)
341 352 return True
342 353 except (OSError, AttributeError):
343 354 return False
344 355
345 356 @check("hardlink", "hardlinks")
346 357 def has_hardlink():
347 358 from mercurial import util
348 359 fh, fn = tempfile.mkstemp(dir='.', prefix=tempprefix)
349 360 os.close(fh)
350 361 name = tempfile.mktemp(dir='.', prefix=tempprefix)
351 362 try:
352 363 util.oslink(fn, name)
353 364 os.unlink(name)
354 365 return True
355 366 except OSError:
356 367 return False
357 368 finally:
358 369 os.unlink(fn)
359 370
360 371 @check("hardlink-whitelisted", "hardlinks on whitelisted filesystems")
361 372 def has_hardlink_whitelisted():
362 373 from mercurial import util
363 374 try:
364 375 fstype = util.getfstype('.')
365 376 except OSError:
366 377 return False
367 378 return fstype in util._hardlinkfswhitelist
368 379
369 380 @check("rmcwd", "can remove current working directory")
370 381 def has_rmcwd():
371 382 ocwd = os.getcwd()
372 383 temp = tempfile.mkdtemp(dir='.', prefix=tempprefix)
373 384 try:
374 385 os.chdir(temp)
375 386 # On Linux, 'rmdir .' isn't allowed, but the other names are okay.
376 387 # On Solaris and Windows, the cwd can't be removed by any names.
377 388 os.rmdir(os.getcwd())
378 389 return True
379 390 except OSError:
380 391 return False
381 392 finally:
382 393 os.chdir(ocwd)
383 394 # clean up temp dir on platforms where cwd can't be removed
384 395 try:
385 396 os.rmdir(temp)
386 397 except OSError:
387 398 pass
388 399
389 400 @check("tla", "GNU Arch tla client")
390 401 def has_tla():
391 402 return matchoutput('tla --version 2>&1', br'The GNU Arch Revision')
392 403
393 404 @check("gpg", "gpg client")
394 405 def has_gpg():
395 406 return matchoutput('gpg --version 2>&1', br'GnuPG')
396 407
397 408 @check("gpg2", "gpg client v2")
398 409 def has_gpg2():
399 410 return matchoutput('gpg --version 2>&1', br'GnuPG[^0-9]+2\.')
400 411
401 412 @check("gpg21", "gpg client v2.1+")
402 413 def has_gpg21():
403 414 return matchoutput('gpg --version 2>&1', br'GnuPG[^0-9]+2\.(?!0)')
404 415
405 416 @check("unix-permissions", "unix-style permissions")
406 417 def has_unix_permissions():
407 418 d = tempfile.mkdtemp(dir='.', prefix=tempprefix)
408 419 try:
409 420 fname = os.path.join(d, 'foo')
410 421 for umask in (0o77, 0o07, 0o22):
411 422 os.umask(umask)
412 423 f = open(fname, 'w')
413 424 f.close()
414 425 mode = os.stat(fname).st_mode
415 426 os.unlink(fname)
416 427 if mode & 0o777 != ~umask & 0o666:
417 428 return False
418 429 return True
419 430 finally:
420 431 os.rmdir(d)
421 432
422 433 @check("unix-socket", "AF_UNIX socket family")
423 434 def has_unix_socket():
424 435 return getattr(socket, 'AF_UNIX', None) is not None
425 436
426 437 @check("root", "root permissions")
427 438 def has_root():
428 439 return getattr(os, 'geteuid', None) and os.geteuid() == 0
429 440
430 441 @check("pyflakes", "Pyflakes python linter")
431 442 def has_pyflakes():
432 443 return matchoutput("sh -c \"echo 'import re' 2>&1 | pyflakes\"",
433 444 br"<stdin>:1: 're' imported but unused",
434 445 True)
435 446
436 447 @check("pylint", "Pylint python linter")
437 448 def has_pylint():
438 449 return matchoutput("pylint --help",
439 450 br"Usage: pylint",
440 451 True)
441 452
442 453 @check("clang-format", "clang-format C code formatter")
443 454 def has_clang_format():
444 455 return matchoutput("clang-format --help",
445 456 br"^OVERVIEW: A tool to format C/C\+\+[^ ]+ code.")
446 457
447 458 @check("jshint", "JSHint static code analysis tool")
448 459 def has_jshint():
449 460 return matchoutput("jshint --version 2>&1", br"jshint v")
450 461
451 462 @check("pygments", "Pygments source highlighting library")
452 463 def has_pygments():
453 464 try:
454 465 import pygments
455 466 pygments.highlight # silence unused import warning
456 467 return True
457 468 except ImportError:
458 469 return False
459 470
460 471 @check("outer-repo", "outer repo")
461 472 def has_outer_repo():
462 473 # failing for other reasons than 'no repo' imply that there is a repo
463 474 return not matchoutput('hg root 2>&1',
464 475 br'abort: no repository found', True)
465 476
466 477 @check("ssl", "ssl module available")
467 478 def has_ssl():
468 479 try:
469 480 import ssl
470 481 ssl.CERT_NONE
471 482 return True
472 483 except ImportError:
473 484 return False
474 485
475 486 @check("sslcontext", "python >= 2.7.9 ssl")
476 487 def has_sslcontext():
477 488 try:
478 489 import ssl
479 490 ssl.SSLContext
480 491 return True
481 492 except (ImportError, AttributeError):
482 493 return False
483 494
484 495 @check("defaultcacerts", "can verify SSL certs by system's CA certs store")
485 496 def has_defaultcacerts():
486 497 from mercurial import sslutil, ui as uimod
487 498 ui = uimod.ui.load()
488 499 return sslutil._defaultcacerts(ui) or sslutil._canloaddefaultcerts
489 500
490 501 @check("defaultcacertsloaded", "detected presence of loaded system CA certs")
491 502 def has_defaultcacertsloaded():
492 503 import ssl
493 504 from mercurial import sslutil, ui as uimod
494 505
495 506 if not has_defaultcacerts():
496 507 return False
497 508 if not has_sslcontext():
498 509 return False
499 510
500 511 ui = uimod.ui.load()
501 512 cafile = sslutil._defaultcacerts(ui)
502 513 ctx = ssl.create_default_context()
503 514 if cafile:
504 515 ctx.load_verify_locations(cafile=cafile)
505 516 else:
506 517 ctx.load_default_certs()
507 518
508 519 return len(ctx.get_ca_certs()) > 0
509 520
510 521 @check("tls1.2", "TLS 1.2 protocol support")
511 522 def has_tls1_2():
512 523 from mercurial import sslutil
513 524 return 'tls1.2' in sslutil.supportedprotocols
514 525
515 526 @check("windows", "Windows")
516 527 def has_windows():
517 528 return os.name == 'nt'
518 529
519 530 @check("system-sh", "system() uses sh")
520 531 def has_system_sh():
521 532 return os.name != 'nt'
522 533
523 534 @check("serve", "platform and python can manage 'hg serve -d'")
524 535 def has_serve():
525 536 return True
526 537
527 538 @check("test-repo", "running tests from repository")
528 539 def has_test_repo():
529 540 t = os.environ["TESTDIR"]
530 541 return os.path.isdir(os.path.join(t, "..", ".hg"))
531 542
532 543 @check("tic", "terminfo compiler and curses module")
533 544 def has_tic():
534 545 try:
535 546 import curses
536 547 curses.COLOR_BLUE
537 548 return matchoutput('test -x "`which tic`"', br'')
538 549 except ImportError:
539 550 return False
540 551
541 552 @check("msys", "Windows with MSYS")
542 553 def has_msys():
543 554 return os.getenv('MSYSTEM')
544 555
545 556 @check("aix", "AIX")
546 557 def has_aix():
547 558 return sys.platform.startswith("aix")
548 559
549 560 @check("osx", "OS X")
550 561 def has_osx():
551 562 return sys.platform == 'darwin'
552 563
553 564 @check("osxpackaging", "OS X packaging tools")
554 565 def has_osxpackaging():
555 566 try:
556 567 return (matchoutput('pkgbuild', br'Usage: pkgbuild ', ignorestatus=1)
557 568 and matchoutput(
558 569 'productbuild', br'Usage: productbuild ',
559 570 ignorestatus=1)
560 571 and matchoutput('lsbom', br'Usage: lsbom', ignorestatus=1)
561 572 and matchoutput(
562 573 'xar --help', br'Usage: xar', ignorestatus=1))
563 574 except ImportError:
564 575 return False
565 576
566 577 @check('linuxormacos', 'Linux or MacOS')
567 578 def has_linuxormacos():
568 579 # This isn't a perfect test for MacOS. But it is sufficient for our needs.
569 580 return sys.platform.startswith(('linux', 'darwin'))
570 581
571 582 @check("docker", "docker support")
572 583 def has_docker():
573 584 pat = br'A self-sufficient runtime for'
574 585 if matchoutput('docker --help', pat):
575 586 if 'linux' not in sys.platform:
576 587 # TODO: in theory we should be able to test docker-based
577 588 # package creation on non-linux using boot2docker, but in
578 589 # practice that requires extra coordination to make sure
579 590 # $TESTTEMP is going to be visible at the same path to the
580 591 # boot2docker VM. If we figure out how to verify that, we
581 592 # can use the following instead of just saying False:
582 593 # return 'DOCKER_HOST' in os.environ
583 594 return False
584 595
585 596 return True
586 597 return False
587 598
588 599 @check("debhelper", "debian packaging tools")
589 600 def has_debhelper():
590 601 # Some versions of dpkg say `dpkg', some say 'dpkg' (` vs ' on the first
591 602 # quote), so just accept anything in that spot.
592 603 dpkg = matchoutput('dpkg --version',
593 604 br"Debian .dpkg' package management program")
594 605 dh = matchoutput('dh --help',
595 606 br'dh is a part of debhelper.', ignorestatus=True)
596 607 dh_py2 = matchoutput('dh_python2 --help',
597 608 br'other supported Python versions')
598 609 # debuild comes from the 'devscripts' package, though you might want
599 610 # the 'build-debs' package instead, which has a dependency on devscripts.
600 611 debuild = matchoutput('debuild --help',
601 612 br'to run debian/rules with given parameter')
602 613 return dpkg and dh and dh_py2 and debuild
603 614
604 615 @check("debdeps",
605 616 "debian build dependencies (run dpkg-checkbuilddeps in contrib/)")
606 617 def has_debdeps():
607 618 # just check exit status (ignoring output)
608 619 path = '%s/../contrib/debian/control' % os.environ['TESTDIR']
609 620 return matchoutput('dpkg-checkbuilddeps %s' % path, br'')
610 621
611 622 @check("demandimport", "demandimport enabled")
612 623 def has_demandimport():
613 624 # chg disables demandimport intentionally for performance wins.
614 625 return ((not has_chg()) and os.environ.get('HGDEMANDIMPORT') != 'disable')
615 626
616 627 @check("py3k", "running with Python 3.x")
617 628 def has_py3k():
618 629 return 3 == sys.version_info[0]
619 630
620 631 @check("py3exe", "a Python 3.x interpreter is available")
621 632 def has_python3exe():
622 633 return 'PYTHON3' in os.environ
623 634
624 635 @check("py3pygments", "Pygments available on Python 3.x")
625 636 def has_py3pygments():
626 637 if has_py3k():
627 638 return has_pygments()
628 639 elif has_python3exe():
629 640 # just check exit status (ignoring output)
630 641 py3 = os.environ['PYTHON3']
631 642 return matchoutput('%s -c "import pygments"' % py3, br'')
632 643 return False
633 644
634 645 @check("pure", "running with pure Python code")
635 646 def has_pure():
636 647 return any([
637 648 os.environ.get("HGMODULEPOLICY") == "py",
638 649 os.environ.get("HGTEST_RUN_TESTS_PURE") == "--pure",
639 650 ])
640 651
641 652 @check("slow", "allow slow tests (use --allow-slow-tests)")
642 653 def has_slow():
643 654 return os.environ.get('HGTEST_SLOW') == 'slow'
644 655
645 656 @check("hypothesis", "Hypothesis automated test generation")
646 657 def has_hypothesis():
647 658 try:
648 659 import hypothesis
649 660 hypothesis.given
650 661 return True
651 662 except ImportError:
652 663 return False
653 664
654 665 @check("unziplinks", "unzip(1) understands and extracts symlinks")
655 666 def unzip_understands_symlinks():
656 667 return matchoutput('unzip --help', br'Info-ZIP')
657 668
658 669 @check("zstd", "zstd Python module available")
659 670 def has_zstd():
660 671 try:
661 672 import mercurial.zstd
662 673 mercurial.zstd.__version__
663 674 return True
664 675 except ImportError:
665 676 return False
666 677
667 678 @check("devfull", "/dev/full special file")
668 679 def has_dev_full():
669 680 return os.path.exists('/dev/full')
670 681
671 682 @check("virtualenv", "Python virtualenv support")
672 683 def has_virtualenv():
673 684 try:
674 685 import virtualenv
675 686 virtualenv.ACTIVATE_SH
676 687 return True
677 688 except ImportError:
678 689 return False
679 690
680 691 @check("fsmonitor", "running tests with fsmonitor")
681 692 def has_fsmonitor():
682 693 return 'HGFSMONITOR_TESTS' in os.environ
683 694
684 695 @check("fuzzywuzzy", "Fuzzy string matching library")
685 696 def has_fuzzywuzzy():
686 697 try:
687 698 import fuzzywuzzy
688 699 fuzzywuzzy.__version__
689 700 return True
690 701 except ImportError:
691 702 return False
@@ -1,108 +1,106
1 Require lfs-test-server (https://github.com/git-lfs/lfs-test-server)
2
3 $ hash lfs-test-server || { echo 'skipped: missing lfs-test-server'; exit 80; }
1 #require lfs-test-server
4 2
5 3 $ LFS_LISTEN="tcp://:$HGPORT"
6 4 $ LFS_HOST="localhost:$HGPORT"
7 5 $ LFS_PUBLIC=1
8 6 $ export LFS_LISTEN LFS_HOST LFS_PUBLIC
9 7 $ lfs-test-server &> lfs-server.log &
10 8 $ echo $! >> $DAEMON_PIDS
11 9
12 10 $ cat >> $HGRCPATH <<EOF
13 11 > [extensions]
14 12 > lfs=
15 13 > [lfs]
16 14 > url=http://foo:bar@$LFS_HOST/
17 15 > threshold=1
18 16 > EOF
19 17
20 18 $ hg init repo1
21 19 $ cd repo1
22 20 $ echo THIS-IS-LFS > a
23 21 $ hg commit -m a -A a
24 22
25 23 $ hg init ../repo2
26 24 $ hg push ../repo2 -v
27 25 pushing to ../repo2
28 26 searching for changes
29 27 lfs: uploading 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b (12 bytes)
30 28 1 changesets found
31 29 uncompressed size of bundle content:
32 30 * (changelog) (glob)
33 31 * (manifests) (glob)
34 32 * a (glob)
35 33 adding changesets
36 34 adding manifests
37 35 adding file changes
38 36 added 1 changesets with 1 changes to 1 files
39 37
40 38 $ cd ../repo2
41 39 $ hg update tip -v
42 40 resolving manifests
43 41 getting a
44 42 lfs: downloading 31cf46fbc4ecd458a0943c5b4881f1f5a6dd36c53d6167d5b69ac45149b38e5b (12 bytes)
45 43 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
46 44
47 45 When the server has some blobs already
48 46
49 47 $ hg mv a b
50 48 $ echo ANOTHER-LARGE-FILE > c
51 49 $ echo ANOTHER-LARGE-FILE2 > d
52 50 $ hg commit -m b-and-c -A b c d
53 51 $ hg push ../repo1 -v | grep -v '^ '
54 52 pushing to ../repo1
55 53 searching for changes
56 54 lfs: need to transfer 2 objects (39 bytes)
57 55 lfs: uploading 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 (20 bytes)
58 56 lfs: uploading d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (19 bytes)
59 57 1 changesets found
60 58 uncompressed size of bundle content:
61 59 adding changesets
62 60 adding manifests
63 61 adding file changes
64 62 added 1 changesets with 3 changes to 3 files
65 63
66 64 $ hg --repo ../repo1 update tip -v
67 65 resolving manifests
68 66 getting b
69 67 getting c
70 68 lfs: downloading d11e1a642b60813aee592094109b406089b8dff4cb157157f753418ec7857998 (19 bytes)
71 69 getting d
72 70 lfs: downloading 37a65ab78d5ecda767e8622c248b5dbff1e68b1678ab0e730d5eb8601ec8ad19 (20 bytes)
73 71 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
74 72
75 73 Check error message when the remote missed a blob:
76 74
77 75 $ echo FFFFF > b
78 76 $ hg commit -m b -A b
79 77 $ echo FFFFF >> b
80 78 $ hg commit -m b b
81 79 $ rm -rf .hg/store/lfs
82 80 $ hg update -C '.^'
83 81 abort: LFS server claims required objects do not exist:
84 82 8e6ea5f6c066b44a0efa43bcce86aea73f17e6e23f0663df0251e7524e140a13!
85 83 [255]
86 84
87 85 Check error message when object does not exist:
88 86
89 87 $ hg init test && cd test
90 88 $ echo "[extensions]" >> .hg/hgrc
91 89 $ echo "lfs=" >> .hg/hgrc
92 90 $ echo "[lfs]" >> .hg/hgrc
93 91 $ echo "threshold=1" >> .hg/hgrc
94 92 $ echo a > a
95 93 $ hg add a
96 94 $ hg commit -m 'test'
97 95 $ echo aaaaa > a
98 96 $ hg commit -m 'largefile'
99 97 $ hg debugdata .hg/store/data/a.i 1 # verify this is no the file content but includes "oid", the LFS "pointer".
100 98 version https://git-lfs.github.com/spec/v1
101 99 oid sha256:bdc26931acfb734b142a8d675f205becf27560dc461f501822de13274fe6fc8a
102 100 size 6
103 101 x-is-binary 0
104 102 $ cd ..
105 103 $ hg --config 'lfs.url=https://dewey-lfs.vip.facebook.com/lfs' clone test test2
106 104 updating to branch default
107 105 abort: LFS server error. Remote object for file data/a.i not found:(.*)! (re)
108 106 [255]
General Comments 0
You need to be logged in to leave comments. Login now