Skip to content

Commit c25d736

Browse files
committed
test: refactor copyright test
1 parent 04d48ee commit c25d736

File tree

2 files changed

+21
-19
lines changed

2 files changed

+21
-19
lines changed

test/extra.test.js

+8-19
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,17 @@
1313
// limitations under the License.
1414

1515
import assert from 'node:assert'
16-
import fs from 'node:fs/promises'
1716
import { test, describe } from 'node:test'
18-
import { globby } from '../build/index.js'
17+
import { globby, fs, path } from '../build/index.js'
18+
19+
const __dirname = path.dirname(new URL(import.meta.url).pathname)
1920

2021
describe('extra', () => {
2122
test('every file should have a license', async () => {
23+
const copyright = await fs.readFile(
24+
path.resolve(__dirname, 'fixtures/copyright.txt'),
25+
'utf8'
26+
)
2227
const files = await globby(['**/*.{js,mjs,ts}', '!**/*polyfill.js'], {
2328
gitignore: true,
2429
onlyFiles: true,
@@ -28,23 +33,7 @@ describe('extra', () => {
2833
for (const file of files) {
2934
const content = await fs.readFile(file, 'utf8')
3035
assert(
31-
content
32-
.replace(/\d{4}/g, 'YEAR')
33-
.includes(
34-
'// Copyright YEAR Google LLC\n' +
35-
'//\n' +
36-
'// Licensed under the Apache License, Version 2.0 (the "License");\n' +
37-
'// you may not use this file except in compliance with the License.\n' +
38-
'// You may obtain a copy of the License at\n' +
39-
'//\n' +
40-
'// https://www.apache.org/licenses/LICENSE-2.0\n' +
41-
'//\n' +
42-
'// Unless required by applicable law or agreed to in writing, software\n' +
43-
'// distributed under the License is distributed on an "AS IS" BASIS,\n' +
44-
'// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n' +
45-
'// See the License for the specific language governing permissions and\n' +
46-
'// limitations under the License.'
47-
),
36+
content.replace(/\d{4}/g, 'YEAR').includes(copyright),
4837
`No license header in ${file}.`
4938
)
5039
}

test/fixtures/copyright.txt

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Copyright YEAR Google LLC
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// https://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.

0 commit comments

Comments
 (0)