forked from nodejs/commit-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
128 lines (108 loc) · 4.53 KB
/
test.js
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
const through2 = require('through2')
, commitStream = require('./')
, spawn = require('child_process').spawn
, test = require('tape')
, split2 = require('split2')
, listStream = require('list-stream')
function gitToList (gitCmd, callback) {
var child = spawn('bash', [ '-c', gitCmd ])
child.stdout.pipe(split2()).pipe(commitStream()).pipe(listStream.obj(callback))
}
test('current plain commit log', function (t) {
gitToList('git log', function (err, list) {
t.error(err, 'no error')
t.ok(list && list.length > 1, 'got a list')
t.deepEqual(list[list.length - 9], {
author : { email: '[email protected]', name: 'Lars-Magnus Skog' }
, authors : [ { email: '[email protected]', name: 'Lars-Magnus Skog' } ]
, authorDate : 'Tue Feb 9 15:46:46 2016 +0100'
, description : [
'Fixes: https://github.com/rvagg/changelog-maker/issues/35'
]
, ghIssue : 1
, ghProject : 'commit-stream'
, ghUser : 'rvagg'
, prUrl : 'https://github.com/rvagg/commit-stream/pull/1'
, sha : '1bcfd072fd74399808fbcd5cf31ce5342dd6d70c'
, summary : 'process: this should not match PR-URL'
, reviewers : [ { email: '[email protected]', name: 'Rod Vagg' } ]
}, 'got correct ninth commit')
t.deepEqual(list[list.length - 4], {
author: { email: '[email protected]', name: 'Rod Vagg' }
, authors: [ { email: '[email protected]', name: 'Rod Vagg' } ]
, authorDate: 'Fri Apr 17 11:16:51 2015 +1000'
, sha: 'f92b93c3c7175b07f847dd45058b121cea6b3a20'
, summary: 'deleted package.json line'
}, 'got correct fourth commit')
t.deepEqual(list[list.length - 3], {
author: { email: '[email protected]', name: 'Rod Vagg' }
, authors: [ { email: '[email protected]', name: 'Rod Vagg' } ]
, authorDate: 'Fri Apr 17 11:13:06 2015 +1000'
, description: [ 'comment', 'Reviewed-By: Nobody' ]
, sha: 'db34ce2af09a6a9fb70241d43965a2bc48b90b4c'
, summary: 'squished package.json'
}, 'got correct third commit')
t.deepEqual(list[list.length - 2], {
author : { email: '[email protected]', name: 'Rod Vagg' }
, authors : [ { email: '[email protected]', name: 'Rod Vagg' } ]
, authorDate: 'Fri Apr 17 10:52:16 2015 +1000'
, description : [
'Some extra summary information here'
, 'newline'
, 'Fixes: https://github.com/rvagg/commit-stream/issues/0'
]
, ghIssue : 0
, ghProject : 'commit-stream'
, ghUser : 'rvagg'
, prUrl : 'https://github.com/rvagg/commit-stream/pulls/0'
, reviewers : [ { email: '[email protected]', name: 'Roger Vagg' } ]
, sha : '6275758f597ae579202fbe4eccca1407f2c67ac1'
, summary : 'added test.js'
}, 'got correct second commit')
t.deepEqual(list[list.length - 1], {
sha : 'd94841274e2979e7758413a0f48fa37560d0dde6'
, authorDate: 'Thu Apr 16 20:49:21 2015 +1000'
, author : { name: 'Rod Vagg', email: '[email protected]' }
, authors: [ { email: '[email protected]', name: 'Rod Vagg' } ]
, summary: 'make it so'
}, 'got correct first commit')
t.deepEqual(list[list.length - 16], {
sha : list[list.length - 16].sha // unknown at time of writing :)
, authorDate: 'Tue Jun 12 23:41:35 2018 +0200'
, author : { name: 'Anna Henningsen', email: '[email protected]' }
, authors: [
{ name: 'Anna Henningsen', email: '[email protected]' }
, { name: 'nobody', email: 'nobody@nowhere' }
]
, summary: 'add support for co-authored-by'
}, 'got correct co-authored-by commit')
t.end()
})
})
test('current commit log with changes', function (t) {
gitToList('git log --stat', function (err, list) {
t.error(err, 'no errors')
t.ok(list && list.length > 0, 'got a list')
t.deepEqual(list[list.length - 4].changes, {
files : 1
, insertions : 0
, deletions : 1
}, 'got correct second commit changes')
t.deepEqual(list[list.length - 3].changes, {
files : 1
, insertions : 1
, deletions : 28
}, 'got correct second commit changes')
t.deepEqual(list[list.length - 2].changes, {
files : 1
, insertions : 49
, deletions : 0
}, 'got correct second commit changes')
t.deepEqual(list[list.length - 1].changes, {
files : 1
, insertions : 28
, deletions : 0
}, 'got correct first commit changes')
t.end()
})
})