Skip to content

rules: add co-authored-by-is-trailer #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions lib/rules/co-authored-by-is-trailer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
'use strict'

const id = 'co-authored-by-is-trailer'

module.exports = {
id: id,
meta: {
description: 'enforce that "Co-authored-by:" lines are trailers',
recommended: true
},
defaults: {},
options: {},
validate: (context, rule) => {
const parsed = context.toJSON()
const lines = parsed.body.map((line, i) => [line, i])
const re = /^\s*Co-authored-by:/gi
const coauthors = lines.filter(([line]) => re.test(line))
if (coauthors.length !== 0) {
const firstCoauthor = coauthors[0]
const emptyLines = lines.filter(([text]) => text.trim().length === 0)
// There must be at least one empty line, and the last empty line must be
// above the first Co-authored-by line.
const isTrailer = (emptyLines.length !== 0) &&
emptyLines.pop()[1] < firstCoauthor[1]
if (isTrailer) {
context.report({
id: id,
message: 'Co-authored-by is a trailer',
string: '',
level: 'pass'
})
} else {
context.report({
id: id,
message: 'Co-authored-by must be a trailer',
string: firstCoauthor[0],
line: firstCoauthor[1],
column: 0,
level: 'fail'
})
}
} else {
context.report({
id: id,
message: 'no Co-authored-by metadata',
string: '',
level: 'pass'
})
}
}
}
157 changes: 157 additions & 0 deletions test/rules/co-authored-by-is-trailer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
'use strict'

const test = require('tap').test
const Rule = require('../../lib/rules/co-authored-by-is-trailer')
const Commit = require('gitlint-parser-node')
const Validator = require('../../')

test('rule: co-authored-by-is-trailer', (t) => {
t.test('no co-authors', (tt) => {
tt.plan(4)
const v = new Validator()
const context = new Commit({
sha: 'e7c077c610afa371430180fbd447bfef60ebc5ea',
author: {
name: 'Foo',
email: 'foo@example.com',
date: '2016-04-12T19:42:23Z'
},
message: 'test: fix something\n' +
'\n' +
'fhqwhgads'
}, v)

context.report = (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'co-authored-by-is-trailer', 'id')
tt.equal(opts.message, 'no Co-authored-by metadata', 'message')
tt.equal(opts.level, 'pass', 'level')
}

Rule.validate(context)
})

t.test('no empty lines above', (tt) => {
tt.plan(7)
const v = new Validator()
const context = new Commit({
sha: 'e7c077c610afa371430180fbd447bfef60ebc5ea',
author: {
name: 'Foo',
email: 'foo@example.com',
date: '2016-04-12T19:42:23Z'
},
message: 'test: fix something\n' +
'Co-authored-by: Someone <someone@example.com>'
}, v)

context.report = (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'co-authored-by-is-trailer', 'id')
tt.equal(opts.message, 'Co-authored-by must be a trailer', 'message')
tt.equal(opts.string, 'Co-authored-by: Someone <someone@example.com>', 'string')
tt.equal(opts.line, 0, 'line')
tt.equal(opts.column, 0, 'column')
tt.equal(opts.level, 'fail', 'level')
}

Rule.validate(context)
})

t.test('not trailer', (tt) => {
tt.plan(7)
const v = new Validator()
const context = new Commit({
sha: 'e7c077c610afa371430180fbd447bfef60ebc5ea',
author: {
name: 'Foo',
email: 'foo@example.com',
date: '2016-04-12T19:42:23Z'
},
message: 'test: fix something\n' +
'\n' +
'Some description.\n' +
'\n' +
'Co-authored-by: Someone <someone@example.com>\n' +
'\n' +
'Reviewed-By: Bar <bar@example.com>'
}, v)

context.report = (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'co-authored-by-is-trailer', 'id')
tt.equal(opts.message, 'Co-authored-by must be a trailer', 'message')
tt.equal(opts.string, 'Co-authored-by: Someone <someone@example.com>', 'string')
tt.equal(opts.line, 3, 'line')
tt.equal(opts.column, 0, 'column')
tt.equal(opts.level, 'fail', 'level')
}

Rule.validate(context)
})

t.test('not all are trailers', (tt) => {
tt.plan(7)
const v = new Validator()
const context = new Commit({
sha: 'e7c077c610afa371430180fbd447bfef60ebc5ea',
author: {
name: 'Foo',
email: 'foo@example.com',
date: '2016-04-12T19:42:23Z'
},
message: 'test: fix something\n' +
'\n' +
'Some description.\n' +
'\n' +
'Co-authored-by: Someone <someone@example.com>\n' +
'\n' +
'Co-authored-by: Someone Else <someone.else@example.com>\n' +
'Reviewed-By: Bar <bar@example.com>'
}, v)

context.report = (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'co-authored-by-is-trailer', 'id')
tt.equal(opts.message, 'Co-authored-by must be a trailer', 'message')
tt.equal(opts.string, 'Co-authored-by: Someone <someone@example.com>', 'string')
tt.equal(opts.line, 3, 'line')
tt.equal(opts.column, 0, 'column')
tt.equal(opts.level, 'fail', 'level')
}

Rule.validate(context)
})

t.test('is trailer', (tt) => {
tt.plan(4)
const v = new Validator()
const context = new Commit({
sha: 'e7c077c610afa371430180fbd447bfef60ebc5ea',
author: {
name: 'Foo',
email: 'foo@example.com',
date: '2016-04-12T19:42:23Z'
},
message: 'test: fix something\n' +
'\n' +
'Some description.\n' +
'\n' +
'More description.\n' +
'\n' +
'Co-authored-by: Someone <someone@example.com>\n' +
'Reviewed-By: Bar <bar@example.com>'
}, v)

context.report = (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'co-authored-by-is-trailer', 'id')
tt.equal(opts.message, 'Co-authored-by is a trailer', 'message')
tt.equal(opts.level, 'pass', 'level')
}

Rule.validate(context)
})

t.end()
})