unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob f8c843ff50cb41c15f195467b90952b91d40d621 27905 bytes (raw)
name: test/lisp/vc/vc-tests.el 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
 
;;; vc-tests.el --- Tests of different backends of vc.el  -*- lexical-binding:t -*-

;; Copyright (C) 2014-2021 Free Software Foundation, Inc.

;; Author: Michael Albinus <michael.albinus@gmx.de>

;; This file is part of GNU Emacs.
;;
;; GNU Emacs is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;;
;; GNU Emacs is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; For every supported VC on the machine, different test cases are
;; generated automatically.

;; Functions to be tested (see Commentary of vc.el).  Mandatory
;; functions are marked with `*', optional functions are marked with `-':

;; BACKEND PROPERTIES
;;
;; * revision-granularity                                       DONE

;; STATE-QUERYING FUNCTIONS
;;
;; * registered (file)                                          DONE
;; * state (file)                                               DONE
;; - dir-status (dir update-function)
;; - dir-status-files (dir files default-state update-function)
;; - dir-extra-headers (dir)
;; - dir-printer (fileinfo)
;; - status-fileinfo-extra (file)
;; * working-revision (file)                                    DONE
;; - latest-on-branch-p (file)
;; * checkout-model (files)                                     DONE
;; - mode-line-string (file)

;; STATE-CHANGING FUNCTIONS
;;
;; * create-repo (backend)                                      DONE
;; * register (files &optional comment)                         DONE
;; - responsible-p (file)
;; - receive-file (file rev)
;; - unregister (file)                                          DONE
;; * checkin (files comment)
;; * find-revision (file rev buffer)
;; * checkout (file &optional rev)
;; * revert (file &optional contents-done)
;; - rollback (files)
;; - merge-file (file rev1 rev2)
;; - merge-branch ()
;; - merge-news (file)
;; - pull (prompt)
;; - steal-lock (file &optional revision)
;; - modify-change-comment (files rev comment)
;; - mark-resolved (files)
;; - find-admin-dir (file)

;; HISTORY FUNCTIONS
;;
;; * print-log (files buffer &optional shortlog start-revision limit)
;; * log-outgoing (backend remote-location)
;; * log-incoming (backend remote-location)
;; - log-view-mode ()
;; - show-log-entry (revision)
;; - comment-history (file)
;; - update-changelog (files)
;; * diff (files &optional async rev1 rev2 buffer)
;; - revision-completion-table (files)
;; - annotate-command (file buf &optional rev)
;; - annotate-time ()
;; - annotate-current-time ()
;; - annotate-extract-revision-at-line ()
;; - region-history (FILE BUFFER LFROM LTO)
;; - region-history-mode ()

;; TAG SYSTEM
;;
;; - create-tag (dir name branchp)
;; - retrieve-tag (dir name update)

;; MISCELLANEOUS
;;
;; - make-version-backups-p (file)
;; - root (file)
;; - ignore (file &optional directory)
;; - ignore-completion-table
;; - previous-revision (file rev)
;; - next-revision (file rev)
;; - log-edit-mode ()
;; - check-headers ()
;; - delete-file (file)
;; - rename-file (old new)                                      DONE
;; - find-file-hook ()
;; - extra-menu ()
;; - extra-dir-menu ()
;; - conflicted-files (dir)

;;; Code:

(require 'ert)
(require 'vc)

(declare-function w32-application-type "w32proc.c")

;; The working horses.

(defvar vc-test--cleanup-hook nil
  "Functions for cleanup at the end of an ert test.
Don't set it globally, the functions should be let-bound.")

(defun vc-test--revision-granularity-function (backend)
  "Run the `vc-revision-granularity' backend function."
  (vc-call-backend backend 'revision-granularity))

(defun vc-test--create-repo-function (backend)
  "Run the `vc-create-repo' backend function.
For backends which dont support it, it is emulated."

  (cond
   ((eq backend 'CVS)
    (let ((tmp-dir
	   (expand-file-name
	    (make-temp-name "vc-test") temporary-file-directory)))
      (make-directory (expand-file-name "module" tmp-dir) 'parents)
      (make-directory (expand-file-name "CVSROOT" tmp-dir) 'parents)
      (if (not (fboundp 'w32-application-type))
          (shell-command-to-string (format "cvs -Q -d:local:%s co module"
                                           tmp-dir))
        (let ((cvs-prog (executable-find "cvs"))
              (tdir tmp-dir))
          ;; If CVS executable is an MSYS program, reformat the file
          ;; name of TMP-DIR to have the /d/foo/bar form supported by
          ;; MSYS programs.  (FIXME: What about Cygwin cvs.exe?)
          (if (eq (w32-application-type cvs-prog) 'msys)
              (setq tdir
                    (concat "/" (substring tmp-dir 0 1) (substring tmp-dir 2))))
          (shell-command-to-string (format "cvs -Q -d:local:%s co module"
                                           tdir))))
      (rename-file "module/CVS" default-directory)
      (delete-directory "module" 'recursive)
      ;; We must cleanup the "remote" CVS repo as well.
      (add-hook 'vc-test--cleanup-hook
		`(lambda () (delete-directory ,tmp-dir 'recursive)))))

   ((eq backend 'Arch)
    (let ((archive-name (format "%s--%s" user-mail-address (random))))
      (when (string-match
	     "no arch user id set" (shell-command-to-string "tla my-id"))
	(shell-command-to-string
	 (format "tla my-id \"<%s>\"" user-mail-address)))
      (shell-command-to-string
       (format "tla make-archive %s %s" archive-name default-directory))
      (shell-command-to-string
       (format "tla my-default-archive %s" archive-name))))

   ((eq backend 'Mtn)
    (let ((archive-name "foo.mtn"))
      (shell-command-to-string
       (format
	"mtn db init --db=%s"
	(expand-file-name archive-name default-directory)))
      (shell-command-to-string
       (format "mtn --db=%s --branch=foo setup ." archive-name))))

   (t (vc-create-repo backend))))

(defun vc-test--create-repo (backend)
  "Create a test repository in `default-directory', a temporary directory."

  (let ((vc-handled-backends `(,backend))
	(default-directory
	  (file-name-as-directory
	   (expand-file-name
	    (make-temp-name "vc-test") temporary-file-directory)))
	(process-environment process-environment)
	tempdir
	vc-test--cleanup-hook)
    (when (eq backend 'Bzr)
      (setq tempdir (make-temp-file "vc-test--create-repo" t)
	    process-environment (cons (format "BZR_HOME=%s" tempdir)
				      process-environment)))

    (unwind-protect
	(progn
	  ;; Cleanup.
	  (add-hook
	   'vc-test--cleanup-hook
	   `(lambda () (delete-directory ,default-directory 'recursive)))

	  ;; Check the revision granularity.
	  (should (memq (vc-test--revision-granularity-function backend)
			'(file repository)))

	  ;; Create empty repository.
	  (make-directory default-directory)
	  (should (file-directory-p default-directory))
	  (vc-test--create-repo-function backend)
	  (should (eq (vc-responsible-backend default-directory) backend)))

      ;; Save exit.
      (ignore-errors
        (if tempdir (delete-directory tempdir t))
        (run-hooks 'vc-test--cleanup-hook)))))

;; FIXME: Why isn't there `vc-unregister'?
(defun vc-test--unregister-function (backend file)
  "Run the `vc-unregister' backend function.
For backends which don't support it, `vc-not-supported' is signaled."
  ;; CVS, SVN, SCCS, SRC and Mtn are not supported, and will signal
  ;; `vc-not-supported'.
  (prog1
      (vc-call-backend backend 'unregister file)
    (vc-file-clearprops file)))

(defmacro vc-test--run-maybe-unsupported-function (func &rest args)
  "Run FUNC with ARGS as arguments.
Catch the `vc-not-supported' error."
  `(condition-case err
       (funcall ,func ,@args)
     (vc-not-supported 'vc-not-supported)
     (t (signal (car err) (cdr err)))))

(defun vc-test--register (backend)
  "Register and unregister a file.
This checks also `vc-backend' and `vc-responsible-backend'."

  (let ((vc-handled-backends `(,backend))
	(default-directory
	  (file-name-as-directory
	   (expand-file-name
	    (make-temp-name "vc-test") temporary-file-directory)))
	(process-environment process-environment)
	tempdir
	vc-test--cleanup-hook)
    (when (eq backend 'Bzr)
      (setq tempdir (make-temp-file "vc-test--register" t)
	    process-environment (cons (format "BZR_HOME=%s" tempdir)
				      process-environment)))
    (unwind-protect
	(progn
	  ;; Cleanup.
	  (add-hook
	   'vc-test--cleanup-hook
	   `(lambda () (delete-directory ,default-directory 'recursive)))

	  ;; Create empty repository.
	  (make-directory default-directory)
	  (vc-test--create-repo-function backend)
          ;; For file oriented backends CVS, RCS and SVN the backend is
          ;; returned, and the directory is registered already.
          (should (if (vc-backend default-directory)
                      (vc-registered default-directory)
                    (not (vc-registered default-directory))))
          (should (eq (vc-responsible-backend default-directory) backend))

	  (let ((tmp-name1 (expand-file-name "foo" default-directory))
		(tmp-name2 "bla"))
	    ;; Register files.  Check for it.
	    (write-region "foo" nil tmp-name1 nil 'nomessage)
	    (should (file-exists-p tmp-name1))
            (should-not (vc-backend tmp-name1))
            (should (eq (vc-responsible-backend tmp-name1) backend))
	    (should-not (vc-registered tmp-name1))

	    (write-region "bla" nil tmp-name2 nil 'nomessage)
	    (should (file-exists-p tmp-name2))
            (should-not (vc-backend tmp-name2))
            (should (eq (vc-responsible-backend tmp-name2) backend))
	    (should-not (vc-registered tmp-name2))

	    (vc-register (list backend (list tmp-name1 tmp-name2)))
	    (should (file-exists-p tmp-name1))
            (should (eq (vc-backend tmp-name1) backend))
            (should (eq (vc-responsible-backend tmp-name1) backend))
	    (should (vc-registered tmp-name1))

	    (should (file-exists-p tmp-name2))
            (should (eq (vc-backend tmp-name2) backend))
            (should (eq (vc-responsible-backend tmp-name2) backend))
	    (should (vc-registered tmp-name2))

            ;; `vc-backend' accepts also a list of files,
            ;; `vc-responsible-backend' doesn't.
            (should (vc-backend (list tmp-name1 tmp-name2)))

	    ;; Unregister the files.
            (unless (eq (vc-test--run-maybe-unsupported-function
			 'vc-test--unregister-function backend tmp-name1)
			'vc-not-supported)
              (should-not (vc-backend tmp-name1))
              (should-not (vc-registered tmp-name1)))
            (unless (eq (vc-test--run-maybe-unsupported-function
			 'vc-test--unregister-function backend tmp-name2)
			'vc-not-supported)
              (should-not (vc-backend tmp-name2))
              (should-not (vc-registered tmp-name2)))

            ;; The files should still exist.
	    (should (file-exists-p tmp-name1))
	    (should (file-exists-p tmp-name2))))

      ;; Save exit.
      (ignore-errors
        (if tempdir (delete-directory tempdir t))
        (run-hooks 'vc-test--cleanup-hook)))))

(defun vc-test--state (backend)
  "Check the different states of a file."

  (let ((vc-handled-backends `(,backend))
	(default-directory
	  (file-name-as-directory
	   (expand-file-name
	    (make-temp-name "vc-test") temporary-file-directory)))
	(process-environment process-environment)
	tempdir
	vc-test--cleanup-hook)
    (when (eq backend 'Bzr)
      (setq tempdir (make-temp-file "vc-test--state" t)
	    process-environment (cons (format "BZR_HOME=%s" tempdir)
				      process-environment)))
    (unwind-protect
	(progn
	  ;; Cleanup.
	  (add-hook
	   'vc-test--cleanup-hook
	   `(lambda () (delete-directory ,default-directory 'recursive)))

	  ;; Create empty repository.
	  (make-directory default-directory)
	  (vc-test--create-repo-function backend)

	  (let ((tmp-name (expand-file-name "foo" default-directory)))
	    ;; Check state of a nonexistent file.

            (message "vc-state2 %s" (vc-state tmp-name))
	    (should (null (vc-state tmp-name)))

	    ;; Write a new file.  Check state.
	    (write-region "foo" nil tmp-name nil 'nomessage)

            ;; nil: Mtn
            ;; unregistered: Bzr CVS Git Hg SVN RCS
            (message "vc-state3 %s %s" backend (vc-state tmp-name backend))
	    (should (memq (vc-state tmp-name backend) '(nil unregistered)))

	    ;; Register a file.  Check state.
	    (vc-register
	     (list backend (list (file-name-nondirectory tmp-name))))

            ;; FIXME: nil is definitely wrong.
	    ;; nil: SRC
            ;; added: Bzr CVS Git Hg Mtn SVN
	    ;; up-to-date: RCS SCCS
            (message "vc-state4 %s" (vc-state tmp-name))
	    (should (memq (vc-state tmp-name) '(nil added up-to-date)))

	    ;; Unregister the file.  Check state.
            (if (eq (vc-test--run-maybe-unsupported-function
                     'vc-test--unregister-function backend tmp-name)
                    'vc-not-supported)
                (message "vc-state5 unsupported")
              ;; unregistered: Bzr Git RCS Hg
              ;; unsupported: CVS Mtn SCCS SRC SVN
              (message "vc-state5 %s %s" backend (vc-state tmp-name backend))
              (should (memq (vc-state tmp-name backend)
                            '(nil unregistered))))))

      ;; Save exit.
      (ignore-errors
	(if tempdir (delete-directory tempdir t))
	(run-hooks 'vc-test--cleanup-hook)))))

(defun vc-test--working-revision (backend)
  "Check the working revision of a repository."

  (let ((vc-handled-backends `(,backend))
	(default-directory
	  (file-name-as-directory
	   (expand-file-name
	    (make-temp-name "vc-test") temporary-file-directory)))
	(process-environment process-environment)
	tempdir
	vc-test--cleanup-hook)
    (when (eq backend 'Bzr)
      (setq tempdir (make-temp-file "vc-test--working-revision" t)
	    process-environment (cons (format "BZR_HOME=%s" tempdir)
				      process-environment)))

    (unwind-protect
	(progn
	  ;; Cleanup.
	  (add-hook
	   'vc-test--cleanup-hook
	   `(lambda () (delete-directory ,default-directory 'recursive)))

	  ;; Create empty repository.  Check working revision of
	  ;; repository, should be nil.
	  (make-directory default-directory)
	  (vc-test--create-repo-function backend)

          ;; FIXME: Is the value for SVN correct?
	  ;; nil: Bzr CVS Git Hg Mtn RCS SCCS SRC
	  ;; "0": SVN
          (message
           "vc-working-revision1 %s" (vc-working-revision default-directory))
          (should (member (vc-working-revision default-directory) '(nil "0")))

	  (let ((tmp-name (expand-file-name "foo" default-directory)))
	    ;; Check initial working revision, should be nil until
            ;; it's registered.

            (message "vc-working-revision2 %s" (vc-working-revision tmp-name))
            (should-not (vc-working-revision tmp-name))

	    ;; Write a new file.  Check working revision.
	    (write-region "foo" nil tmp-name nil 'nomessage)

            (message "vc-working-revision3 %s" (vc-working-revision tmp-name))
            (should-not (vc-working-revision tmp-name))

	    ;; Register a file.  Check working revision.
	    (vc-register
	     (list backend (list (file-name-nondirectory tmp-name))))

            ;; XXX: nil is fine, at least in Git's case, because
	    ;; `vc-register' only makes the file `added' in this case.
	    ;; nil: Git Mtn
	    ;; "0": Bzr CVS Hg SRC SVN
	    ;; "1.1": RCS SCCS
            ;; "-1": Hg versions before 5 (probably)
            (message "vc-working-revision4 %s" (vc-working-revision tmp-name))
            (should (member (vc-working-revision tmp-name) '(nil "0" "1.1" "-1")))

            ;; TODO: Call `vc-checkin', and check the resulting
            ;; working revision.  None of the return values should be
            ;; nil then.

	    ;; Unregister the file.  Check working revision.
            (if (eq (vc-test--run-maybe-unsupported-function
                     'vc-test--unregister-function backend tmp-name)
                    'vc-not-supported)
                (message "vc-working-revision5 unsupported")
              ;; nil: Bzr Git Hg RCS
              ;; unsupported: CVS Mtn SCCS SRC SVN
              (message "vc-working-revision5 %s" (vc-working-revision tmp-name))
              (should-not (vc-working-revision tmp-name)))))

      ;; Save exit.
      (ignore-errors
        (if tempdir (delete-directory tempdir t))
        (run-hooks 'vc-test--cleanup-hook)))))

(defun vc-test--checkout-model (backend)
  "Check the checkout model of a repository."

  (let ((vc-handled-backends `(,backend))
	(default-directory
	  (file-name-as-directory
	   (expand-file-name
	    (make-temp-name "vc-test") temporary-file-directory)))
	(process-environment process-environment)
	tempdir
	vc-test--cleanup-hook)
    (when (eq backend 'Bzr)
      (setq tempdir (make-temp-file "vc-test--checkout-model" t)
	    process-environment (cons (format "BZR_HOME=%s" tempdir)
				      process-environment)))

    (unwind-protect
	(progn
	  ;; Cleanup.
	  (add-hook
	   'vc-test--cleanup-hook
	   `(lambda () (delete-directory ,default-directory 'recursive)))

	  ;; Create empty repository.  Check repository checkout model.
	  (make-directory default-directory)
	  (vc-test--create-repo-function backend)

	  ;; Surprisingly, none of the backends returns 'announce.
          ;; implicit: Bzr CVS Git Hg Mtn SRC SVN
          ;; locking: RCS SCCS
          (message
           "vc-checkout-model1 %s"
           (vc-checkout-model backend default-directory))
          (should (memq (vc-checkout-model backend default-directory)
			'(announce implicit locking)))

	  (let ((tmp-name (expand-file-name "foo" default-directory)))
	    ;; Check checkout model of a nonexistent file.

	    ;; implicit: Bzr CVS Git Hg Mtn SRC SVN
	    ;; locking: RCS SCCS
            (message
             "vc-checkout-model2 %s" (vc-checkout-model backend tmp-name))
	    (should (memq (vc-checkout-model backend tmp-name)
			  '(announce implicit locking)))

	    ;; Write a new file.  Check checkout model.
	    (write-region "foo" nil tmp-name nil 'nomessage)

	    ;; implicit: Bzr CVS Git Hg Mtn SRC SVN
	    ;; locking: RCS SCCS
            (message
             "vc-checkout-model3 %s" (vc-checkout-model backend tmp-name))
	    (should (memq (vc-checkout-model backend tmp-name)
			  '(announce implicit locking)))

	    ;; Register a file.  Check checkout model.
	    (vc-register
	     (list backend (list (file-name-nondirectory tmp-name))))

	    ;; implicit: Bzr CVS Git Hg Mtn SRC SVN
	    ;; locking: RCS SCCS
            (message
             "vc-checkout-model4 %s" (vc-checkout-model backend tmp-name))
	    (should (memq (vc-checkout-model backend tmp-name)
			  '(announce implicit locking)))

	    ;; Unregister the file.  Check checkout model.
            (if (eq (vc-test--run-maybe-unsupported-function
                     'vc-test--unregister-function backend tmp-name)
                    'vc-not-supported)
                (message "vc-checkout-model5 unsupported")
              ;; implicit: Bzr Git Hg
              ;; locking: RCS
              ;; unsupported: CVS Mtn SCCS SRC SVN
              (message
               "vc-checkout-model5 %s" (vc-checkout-model backend tmp-name))
              (should (memq (vc-checkout-model backend tmp-name)
                            '(announce implicit locking))))))

      ;; Save exit.
      (ignore-errors
        (if tempdir (delete-directory tempdir t))
        (run-hooks 'vc-test--cleanup-hook)))))

(defun vc-test--version-diff (backend)
  "Check the diff version of a repository."

  (let ((vc-handled-backends `(,backend))
	(default-directory
	  (file-name-as-directory
	   (expand-file-name
	    (make-temp-name "vc-test") temporary-file-directory)))
	(process-environment process-environment)
	tempdir
	vc-test--cleanup-hook)
    (when (eq backend 'Bzr)
      (setq tempdir (make-temp-file "vc-test--version-diff" t)
	    process-environment (cons (format "BZR_HOME=%s" tempdir)
				      process-environment)))

    (unwind-protect
	(progn
	  ;; Cleanup.
	  (add-hook
	   'vc-test--cleanup-hook
	   `(lambda () (delete-directory ,default-directory 'recursive)))

	  ;; Create empty repository.  Check repository checkout model.
	  (make-directory default-directory)
	  (vc-test--create-repo-function backend)

	  (let* ((tmp-name (expand-file-name "foo" default-directory))
                 (files (list (file-name-nondirectory tmp-name))))
	    ;; Write and register a new file.
	    (write-region "originaltext" nil tmp-name nil 'nomessage)
	    (vc-register (list backend files))

            (let ((buff (find-file tmp-name)))
              (with-current-buffer buff
                (progn
                  ;; Optionally checkout file.
                  (when (or (eq backend 'RCS) (eq backend 'CVS))
                    (vc-checkout tmp-name))

                  ;; Checkin file.
                  (vc-checkin files backend)
                  (insert "Testing vc-version-diff")
                  (log-edit-done))))

            ;; Modify file content.
            (when (or (eq backend 'RCS) (eq backend 'CVS))
              (vc-checkout tmp-name))
            (write-region "updatedtext" nil tmp-name nil 'nomessage)

	    ;; Check version diff.
            (vc-version-diff files nil nil)
            (should (bufferp (get-buffer "*vc-diff*")))

            (with-current-buffer "*vc-diff*"
              (progn
                (let ((rawtext (buffer-substring-no-properties (point-min)
                                                               (point-max))))
                  (should (string-search "-originaltext" rawtext))
                  (should (string-search "+updatedtext" rawtext)))))))

      ;; Save exit.
      (ignore-errors
        (if tempdir (delete-directory tempdir t))
        (run-hooks 'vc-test--cleanup-hook)))))

(defun vc-test--rename-file (backend)
  "Check the rename-file action."

  (let ((vc-handled-backends `(,backend))
        (default-directory
          (file-name-as-directory
           (expand-file-name
            (make-temp-name "vc-test") temporary-file-directory)))
        (process-environment process-environment)
        tempdir
        vc-test--cleanup-hook)
    (when (eq backend 'Bzr)
      (setq tempdir (make-temp-file "vc-test--rename-file" t)
            process-environment (cons (format "BZR_HOME=%s" tempdir)
                                      process-environment)))

    (unwind-protect
        (progn
          ;; Cleanup.
          (add-hook
           'vc-test--cleanup-hook
           `(lambda () (delete-directory ,default-directory 'recursive)))

          ;; Create empty repository.
          (make-directory default-directory)
          (vc-test--create-repo-function backend)

          (let ((tmp-name (expand-file-name "foo" default-directory))
                (new-name (expand-file-name "bar" default-directory)))
            ;; Write a new file.
            (write-region "foo" nil tmp-name nil 'nomessage)

            ;; Register it.  Renaming can fail otherwise.
            (vc-register
             (list backend (list (file-name-nondirectory tmp-name))))

            (vc-rename-file tmp-name new-name)

            (should (not (file-exists-p tmp-name)))
            (should (file-exists-p new-name))

            (should (equal (vc-state new-name)
                           (if (memq backend '(RCS SCCS))
                               'up-to-date
                             'added)))))

      ;; Save exit.
      (ignore-errors
        (if tempdir (delete-directory tempdir t))
        (run-hooks 'vc-test--cleanup-hook)))))

;; Create the test cases.

(defun vc-test--rcs-enabled ()
  (executable-find "rcs"))

(defun vc-test--cvs-enabled ()
  (executable-find "cvs"))

(defvar vc-svn-program)
(defun vc-test--svn-enabled ()
  (and (executable-find "svnadmin")
       (executable-find vc-svn-program)))

(defun vc-test--sccs-enabled ()
  (executable-find "sccs"))

(defvar vc-src-program)
(defun vc-test--src-enabled ()
  (executable-find vc-src-program))

(defvar vc-bzr-program)
(defun vc-test--bzr-enabled ()
  (executable-find vc-bzr-program))

(defvar vc-git-program)
(defun vc-test--git-enabled ()
  (executable-find vc-git-program))

(defvar vc-hg-program)
(defun vc-test--hg-enabled ()
  (executable-find vc-hg-program))

(defvar vc-mtn-program)
(defun vc-test--mtn-enabled ()
  (executable-find vc-mtn-program))

;; Obsoleted.
(defvar vc-arch-program)
(defun vc-test--arch-enabled ()
  (executable-find vc-arch-program))

;; Create the test cases.
(dolist (backend vc-handled-backends)
  (let ((backend-string (downcase (symbol-name backend))))
    (require (intern (format "vc-%s" backend-string)))
    (eval
     ;; Check, whether the backend is supported.
     `(when (funcall ',(intern (format "vc-test--%s-enabled" backend-string)))

	(ert-deftest
	    ,(intern (format "vc-test-%s00-create-repo" backend-string)) ()
	  ,(format "Check `vc-create-repo' for the %s backend."
		   backend-string)
	  (vc-test--create-repo ',backend))

	(ert-deftest
	    ,(intern (format "vc-test-%s01-register" backend-string)) ()
	  ,(format
	    "Check `vc-register' and `vc-registered' for the %s backend."
	    backend-string)
	  (skip-unless
	   (ert-test-passed-p
	    (ert-test-most-recent-result
	     (ert-get-test
	      ',(intern
		 (format "vc-test-%s00-create-repo" backend-string))))))
	  (vc-test--register ',backend))

	(ert-deftest
	    ,(intern (format "vc-test-%s02-state" backend-string)) ()
	  ,(format "Check `vc-state' for the %s backend." backend-string)
	  (skip-unless
	   (ert-test-passed-p
	    (ert-test-most-recent-result
	     (ert-get-test
	      ',(intern
		 (format "vc-test-%s01-register" backend-string))))))
	  (vc-test--state ',backend))

	(ert-deftest
	    ,(intern (format "vc-test-%s03-working-revision" backend-string)) ()
	  ,(format "Check `vc-working-revision' for the %s backend."
		   backend-string)
	  (skip-unless
	   (ert-test-passed-p
	    (ert-test-most-recent-result
	     (ert-get-test
	      ',(intern
		 (format "vc-test-%s01-register" backend-string))))))
	  (vc-test--working-revision ',backend))

	(ert-deftest
	    ,(intern (format "vc-test-%s04-checkout-model" backend-string)) ()
	  ,(format "Check `vc-checkout-model' for the %s backend."
		   backend-string)
	  (skip-unless
	   (ert-test-passed-p
	    (ert-test-most-recent-result
	     (ert-get-test
	      ',(intern
		 (format "vc-test-%s01-register" backend-string))))))
	  (vc-test--checkout-model ',backend))

        (ert-deftest
            ,(intern (format "vc-test-%s05-rename-file" backend-string)) ()
          ,(format "Check `vc-rename-file' for the %s backend."
                   backend-string)
          (skip-unless
           (ert-test-passed-p
            (ert-test-most-recent-result
             (ert-get-test
              ',(intern
                 (format "vc-test-%s01-register" backend-string))))))
          ;; CVS calls vc-delete-file, which insists on prompting
          ;; "Really want to delete ...?"
          (skip-unless (not (eq 'CVS ',backend)))
          (vc-test--rename-file ',backend))

        (ert-deftest
	    ,(intern (format "vc-test-%s06-version-diff" backend-string)) ()
	  ,(format "Check `vc-version-diff' for the %s backend."
		   backend-string)
	  (skip-unless
	   (ert-test-passed-p
	    (ert-test-most-recent-result
	     (ert-get-test
	      ',(intern
		 (format "vc-test-%s01-register" backend-string))))))
	  (vc-test--version-diff ',backend))
        ))))

(provide 'vc-tests)
;;; vc-tests.el ends here

debug log:

solving f8c843ff50 ...
found f8c843ff50 in https://yhetil.org/emacs-devel/87eea49jif.fsf@gmail.com/
found dfe89c519b in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 dfe89c519bf2197a7205dd5d56a161f3a53278ca	test/lisp/vc/vc-tests.el

applying [1/1] https://yhetil.org/emacs-devel/87eea49jif.fsf@gmail.com/
diff --git a/test/lisp/vc/vc-tests.el b/test/lisp/vc/vc-tests.el
index dfe89c519b..f8c843ff50 100644

Checking patch test/lisp/vc/vc-tests.el...
Applied patch test/lisp/vc/vc-tests.el cleanly.

index at:
100644 f8c843ff50cb41c15f195467b90952b91d40d621	test/lisp/vc/vc-tests.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).