@@ -239,11 +239,14 @@ def test_init(self):
239
239
self .setConfig ()
240
240
result = self .invoke ('init' )
241
241
self .assertEqual (result .exit_code , 0 )
242
- self .assertEqual (result .output , "Installed post-commit hook" + os .linesep )
242
+ self .assertEqual (result .output , os .linesep .join (
243
+ f"Installed { hook } hook"
244
+ for hook in ["post-commit" , "pre-commit" ]
245
+ ) + os .linesep )
243
246
self .assertTrue (os .access (os .path .join (".git" , "hooks" , "post-commit" ),
244
247
os .R_OK | os .X_OK ))
245
- self .assertFalse (os .access (os .path .join (".git" , "hooks" , "pre-commit" ),
246
- os .F_OK ))
248
+ self .assertTrue (os .access (os .path .join (".git" , "hooks" , "pre-commit" ),
249
+ os .F_OK ))
247
250
a = self .addCommit ("a" ) # gitpython already returns the rewritten commit
248
251
self .assertEqual (a .authored_datetime ,
249
252
a .authored_datetime .replace (minute = 0 , second = 0 ))
@@ -252,7 +255,7 @@ def test_initwithcheck(self):
252
255
with self .runner .isolated_filesystem ():
253
256
self .setUpRepo ()
254
257
self .setConfig ()
255
- result = self .invoke ('init --enable-check ' )
258
+ result = self .invoke ('init --timezone-change=abort ' )
256
259
self .assertEqual (result .exit_code , 0 )
257
260
self .assertEqual (result .output , os .linesep .join (
258
261
f"Installed { hook } hook"
@@ -283,15 +286,16 @@ def test_checkchange(self):
283
286
with self .runner .isolated_filesystem ():
284
287
self .setUpRepo ()
285
288
self .setConfig ()
289
+ self .git .config (["privacy.ignoreTimezone" , "false" ]) # default is ignore
286
290
os .environ ['TZ' ] = 'Europe/London'
287
291
time .tzset ()
288
292
a = self .addCommit ("a" )
289
293
os .environ ['TZ' ] = 'Europe/Berlin'
290
294
time .tzset ()
291
295
result = self .invoke ('check' )
292
- self .assertEqual (result .exit_code , 2 )
293
296
self .assertTrue (result .output .startswith (
294
297
"Warning: Your timezone has changed" ))
298
+ self .assertEqual (result .exit_code , 2 )
295
299
296
300
def test_checkchangeignore (self ):
297
301
with self .runner .isolated_filesystem ():
@@ -312,7 +316,18 @@ def test_checkwithhook(self):
312
316
with self .runner .isolated_filesystem ():
313
317
self .setUpRepo ()
314
318
self .setConfig ()
315
- result = self .invoke ('init -c' )
319
+ result = self .invoke ('init' )
320
+ self .assertEqual (result .exit_code , 0 )
321
+ os .environ ['TZ' ] = 'Europe/London'
322
+ time .tzset ()
323
+ a = self .addCommit ("a" )
324
+ os .environ ['TZ' ] = 'Europe/Berlin'
325
+ time .tzset ()
326
+ self .addCommit ("b" ) # should not fail
327
+ with self .runner .isolated_filesystem ():
328
+ self .setUpRepo ()
329
+ self .setConfig ()
330
+ result = self .invoke ('init --timezone-change=abort' )
316
331
self .assertEqual (result .exit_code , 0 )
317
332
os .environ ['TZ' ] = 'Europe/London'
318
333
time .tzset ()
@@ -326,6 +341,7 @@ def test_checkdifferentusers(self):
326
341
with self .runner .isolated_filesystem ():
327
342
self .setUpRepo ()
328
343
self .setConfig ()
344
+ self .git .config (["privacy.ignoreTimezone" , "false" ]) # default is ignore
329
345
os .environ ['TZ' ] = 'Europe/London'
330
346
time .tzset ()
331
347
self .
git .
config ([
"user.email" ,
"[email protected] " ])
@@ -444,7 +460,10 @@ def test_globaltemplate(self):
444
460
self .
git .
config ([
"user.email" ,
"[email protected] " ])
445
461
result = self .invoke ('init -g' )
446
462
self .assertEqual (result .exit_code , 0 )
447
- self .assertEqual (result .output , "Installed post-commit hook" + os .linesep )
463
+ self .assertEqual (result .output , os .linesep .join (
464
+ f"Installed { hook } hook"
465
+ for hook in ["post-commit" , "pre-commit" ]
466
+ ) + os .linesep )
448
467
# local Git repo initialised BEFORE global template was set up
449
468
# hence the hooks are not present and active locally yet
450
469
self .assertFalse (os .access (os .path .join (".git" , "hooks" , "post-commit" ),
@@ -453,8 +472,8 @@ def test_globaltemplate(self):
453
472
os .F_OK ))
454
473
self .assertTrue (os .access (os .path .join (templdir , "hooks" , "post-commit" ),
455
474
os .R_OK | os .X_OK ))
456
- self .assertFalse (os .access (os .path .join (templdir , "hooks" , "pre-commit" ),
457
- os .F_OK ))
475
+ self .assertTrue (os .access (os .path .join (templdir , "hooks" , "pre-commit" ),
476
+ os .F_OK ))
458
477
a = self .addCommit ("a" ) # gitpython already returns the rewritten commit
459
478
self .assertNotEqual (a .authored_datetime ,
460
479
a .authored_datetime .replace (minute = 0 , second = 0 ))
@@ -463,8 +482,8 @@ def test_globaltemplate(self):
463
482
self .setUpRepo (templatedir = templdir )
464
483
self .assertTrue (os .access (os .path .join (".git" , "hooks" , "post-commit" ),
465
484
os .R_OK | os .X_OK )) # now installed locally too
466
- self .assertFalse (os .access (os .path .join (".git" , "hooks" , "pre-commit" ),
467
- os .F_OK ))
485
+ self .assertTrue (os .access (os .path .join (".git" , "hooks" , "pre-commit" ),
486
+ os .F_OK ))
468
487
b = self .addCommit ("b" ) # gitpython already returns the rewritten commit
469
488
self .assertEqual (b .authored_datetime ,
470
489
b .authored_datetime .replace (minute = 0 , second = 0 ))
0 commit comments