@stdlib/time-iso-weeks-in-year-cli 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +6 -3
- package/package.json +5 -12
- package/.github/workflows/publish_cli.yml +0 -165
- package/CONTRIBUTORS +0 -39
- package/test/fixtures/long.json +0 -1
- package/test/test.cli.js +0 -208
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -141,7 +141,7 @@ See [LICENSE][stdlib-license].
|
|
|
141
141
|
|
|
142
142
|
## Copyright
|
|
143
143
|
|
|
144
|
-
Copyright © 2016-
|
|
144
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
145
145
|
|
|
146
146
|
</section>
|
|
147
147
|
|
|
@@ -154,8 +154,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
154
154
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/time-iso-weeks-in-year-cli.svg
|
|
155
155
|
[npm-url]: https://npmjs.org/package/@stdlib/time-iso-weeks-in-year-cli
|
|
156
156
|
|
|
157
|
-
[test-image]: https://github.com/stdlib-js/time-iso-weeks-in-year/actions/workflows/test.yml/badge.svg?branch=v0.1
|
|
158
|
-
[test-url]: https://github.com/stdlib-js/time-iso-weeks-in-year/actions/workflows/test.yml?query=branch:v0.1
|
|
157
|
+
[test-image]: https://github.com/stdlib-js/time-iso-weeks-in-year/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
158
|
+
[test-url]: https://github.com/stdlib-js/time-iso-weeks-in-year/actions/workflows/test.yml?query=branch:v0.2.1
|
|
159
159
|
|
|
160
160
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/time-iso-weeks-in-year/main.svg
|
|
161
161
|
[coverage-url]: https://codecov.io/github/stdlib-js/time-iso-weeks-in-year?branch=main
|
|
@@ -182,8 +182,11 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
182
182
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
183
183
|
|
|
184
184
|
[deno-url]: https://github.com/stdlib-js/time-iso-weeks-in-year/tree/deno
|
|
185
|
+
[deno-readme]: https://github.com/stdlib-js/time-iso-weeks-in-year/blob/deno/README.md
|
|
185
186
|
[umd-url]: https://github.com/stdlib-js/time-iso-weeks-in-year/tree/umd
|
|
187
|
+
[umd-readme]: https://github.com/stdlib-js/time-iso-weeks-in-year/blob/umd/README.md
|
|
186
188
|
[esm-url]: https://github.com/stdlib-js/time-iso-weeks-in-year/tree/esm
|
|
189
|
+
[esm-readme]: https://github.com/stdlib-js/time-iso-weeks-in-year/blob/esm/README.md
|
|
187
190
|
[branches-url]: https://github.com/stdlib-js/time-iso-weeks-in-year/blob/main/branches.md
|
|
188
191
|
|
|
189
192
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/time-iso-weeks-in-year/main/LICENSE
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/time-iso-weeks-in-year-cli",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Determine the number of ISO weeks in a year according to the Gregorian calendar.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -25,18 +25,11 @@
|
|
|
25
25
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@stdlib/cli-ctor": "^0.1
|
|
29
|
-
"@stdlib/fs-read-file": "^0.1
|
|
30
|
-
"@stdlib/time-iso-weeks-in-year": "0.1
|
|
31
|
-
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@stdlib/assert-is-browser": "^0.1.0",
|
|
34
|
-
"@stdlib/assert-is-windows": "^0.1.0",
|
|
35
|
-
"@stdlib/process-exec-path": "^0.1.0",
|
|
36
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
37
|
-
"istanbul": "^0.4.1",
|
|
38
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
28
|
+
"@stdlib/cli-ctor": "^0.2.1",
|
|
29
|
+
"@stdlib/fs-read-file": "^0.2.1",
|
|
30
|
+
"@stdlib/time-iso-weeks-in-year": "0.2.1"
|
|
39
31
|
},
|
|
32
|
+
"devDependencies": {},
|
|
40
33
|
"keywords": [
|
|
41
34
|
"stdlib",
|
|
42
35
|
"stdtime",
|
|
@@ -1,165 +0,0 @@
|
|
|
1
|
-
#/
|
|
2
|
-
# @license Apache-2.0
|
|
3
|
-
#
|
|
4
|
-
# Copyright (c) 2023 The Stdlib Authors.
|
|
5
|
-
#
|
|
6
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
# you may not use this file except in compliance with the License.
|
|
8
|
-
# You may obtain a copy of the License at
|
|
9
|
-
#
|
|
10
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
#
|
|
12
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
# See the License for the specific language governing permissions and
|
|
16
|
-
# limitations under the License.
|
|
17
|
-
#/
|
|
18
|
-
|
|
19
|
-
# Workflow name:
|
|
20
|
-
name: publish_cli
|
|
21
|
-
|
|
22
|
-
# Workflow triggers:
|
|
23
|
-
on:
|
|
24
|
-
# Allow the workflow to be manually run:
|
|
25
|
-
workflow_dispatch:
|
|
26
|
-
# Workflow inputs:
|
|
27
|
-
inputs:
|
|
28
|
-
version:
|
|
29
|
-
description: 'Version Increment'
|
|
30
|
-
type: choice
|
|
31
|
-
default: 'none'
|
|
32
|
-
options:
|
|
33
|
-
- 'none'
|
|
34
|
-
- 'major'
|
|
35
|
-
- 'minor'
|
|
36
|
-
- 'patch'
|
|
37
|
-
- 'premajor'
|
|
38
|
-
- 'preminor'
|
|
39
|
-
- 'prepatch'
|
|
40
|
-
- 'prerelease'
|
|
41
|
-
|
|
42
|
-
# Workflow jobs:
|
|
43
|
-
jobs:
|
|
44
|
-
|
|
45
|
-
# Define job to publish package to npm:
|
|
46
|
-
publish:
|
|
47
|
-
|
|
48
|
-
# Define display name:
|
|
49
|
-
name: 'Publish CLI package to npm'
|
|
50
|
-
|
|
51
|
-
# Define the type of virtual host machine on which to run the job:
|
|
52
|
-
runs-on: ubuntu-latest
|
|
53
|
-
|
|
54
|
-
# Define environment variables:
|
|
55
|
-
env:
|
|
56
|
-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
57
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
58
|
-
|
|
59
|
-
# Define the sequence of job steps...
|
|
60
|
-
steps:
|
|
61
|
-
|
|
62
|
-
# Checkout cli branch:
|
|
63
|
-
- name: 'Checkout cli branch'
|
|
64
|
-
uses: actions/checkout@v3
|
|
65
|
-
with:
|
|
66
|
-
ref: cli
|
|
67
|
-
|
|
68
|
-
# Install Node.js:
|
|
69
|
-
- name: 'Install Node.js'
|
|
70
|
-
uses: actions/setup-node@v3
|
|
71
|
-
with:
|
|
72
|
-
node-version: 16
|
|
73
|
-
timeout-minutes: 5
|
|
74
|
-
|
|
75
|
-
# Configure git:
|
|
76
|
-
- name: 'Configure git'
|
|
77
|
-
run: |
|
|
78
|
-
git config --local user.email "noreply@stdlib.io"
|
|
79
|
-
git config --local user.name "stdlib-bot"
|
|
80
|
-
|
|
81
|
-
# Increment package version (if requested):
|
|
82
|
-
- name: 'Increment package version (if requested)'
|
|
83
|
-
if: ${{ github.event.inputs.version != 'none' }}
|
|
84
|
-
run: |
|
|
85
|
-
# Save NPM_TOKEN to user's .npmrc:
|
|
86
|
-
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
|
|
87
|
-
|
|
88
|
-
# Increment package version:
|
|
89
|
-
npm version ${{ github.event.inputs.version }} --no-git-tag-version
|
|
90
|
-
|
|
91
|
-
# Define variable for new version:
|
|
92
|
-
NEW_VERSION=$(node -p "require('./package.json').version")
|
|
93
|
-
|
|
94
|
-
# Replace branch in README.md link definitions for badges with the new version:
|
|
95
|
-
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g"
|
|
96
|
-
|
|
97
|
-
# Create a new commit and tag:
|
|
98
|
-
git add package.json README.md
|
|
99
|
-
git commit -m "Release v${NEW_VERSION}"
|
|
100
|
-
git tag -a "v${NEW_VERSION}-cli" -m "Release v${NEW_VERSION}"
|
|
101
|
-
|
|
102
|
-
# Push changes to GitHub:
|
|
103
|
-
SLUG=${{ github.repository }}
|
|
104
|
-
git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$SLUG.git" --follow-tags
|
|
105
|
-
|
|
106
|
-
# Replace GitHub MathJax equations with SVGs:
|
|
107
|
-
- name: 'Replace GitHub MathJax equations with SVGs'
|
|
108
|
-
run: |
|
|
109
|
-
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/```math\n([\s\S]+?)\n```\n\n//g'
|
|
110
|
-
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
|
|
111
|
-
|
|
112
|
-
# Replace GitHub links to individual packages with npm links:
|
|
113
|
-
- name: 'Replace all GitHub links to individual packages with npm links'
|
|
114
|
-
run: |
|
|
115
|
-
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei '/tree\/main/b; s/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
|
|
116
|
-
SLUG=${{ github.repository }}
|
|
117
|
-
ESCAPED_SLUG=${SLUG//\//\\\/}
|
|
118
|
-
REPO=${SLUG#*/}
|
|
119
|
-
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/https:\/\/github.com\/${ESCAPED_SLUG}\/tree\/main/https:\/\/www.npmjs.com\/package\/@stdlib\/${REPO}/g"
|
|
120
|
-
|
|
121
|
-
# Publish package to npm:
|
|
122
|
-
- name: 'Publish package to npm'
|
|
123
|
-
uses: JS-DevTools/npm-publish@v2
|
|
124
|
-
with:
|
|
125
|
-
token: ${{ secrets.NPM_TOKEN }}
|
|
126
|
-
access: public
|
|
127
|
-
|
|
128
|
-
# Discard any uncommitted changes:
|
|
129
|
-
- name: 'Discard any uncommitted changes'
|
|
130
|
-
run: |
|
|
131
|
-
git reset --hard
|
|
132
|
-
|
|
133
|
-
# Send status to Slack channel if job fails:
|
|
134
|
-
- name: 'Send status to Slack channel in case of failure'
|
|
135
|
-
uses: act10ns/slack@v2
|
|
136
|
-
with:
|
|
137
|
-
status: ${{ job.status }}
|
|
138
|
-
steps: ${{ toJson(steps) }}
|
|
139
|
-
channel: '#npm-ci'
|
|
140
|
-
if: failure()
|
|
141
|
-
|
|
142
|
-
# Define job to cancel any running or queued workflow runs...
|
|
143
|
-
cancel:
|
|
144
|
-
|
|
145
|
-
# Define the type of virtual host machine on which to run the job:
|
|
146
|
-
runs-on: ubuntu-latest
|
|
147
|
-
|
|
148
|
-
# Time out the job after 3 minutes:
|
|
149
|
-
timeout-minutes: 3
|
|
150
|
-
|
|
151
|
-
# Define the sequence of job steps...
|
|
152
|
-
steps:
|
|
153
|
-
|
|
154
|
-
# Cancel any running or queued workflow runs:
|
|
155
|
-
- name: 'Cancel running or queued workflow runs'
|
|
156
|
-
uses: styfle/cancel-workflow-action@0.11.0
|
|
157
|
-
with:
|
|
158
|
-
workflow_id: >-
|
|
159
|
-
benchmark.yml,
|
|
160
|
-
examples.yml,
|
|
161
|
-
test.yml,
|
|
162
|
-
test_coverage.yml,
|
|
163
|
-
test_install.yml,
|
|
164
|
-
publish.yml
|
|
165
|
-
access_token: ${{ github.token }}
|
package/CONTRIBUTORS
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# This file is generated by tools/scripts/update_contributors.
|
|
2
|
-
#
|
|
3
|
-
# Contributors listed in alphabetical order.
|
|
4
|
-
|
|
5
|
-
Ali Salesi <ali_sal1381@yahoo.com>
|
|
6
|
-
Amit Jimiwal <amitjimiwal45@gmail.com>
|
|
7
|
-
Athan Reines <kgryte@gmail.com>
|
|
8
|
-
Brendan Graetz <bguiz@users.noreply.github.com>
|
|
9
|
-
Bruno Fenzl <brunofenzl@gmail.com>
|
|
10
|
-
Christopher Dambamuromo <chridam@gmail.com>
|
|
11
|
-
Dan Rose <danoftheroses@gmail.com>
|
|
12
|
-
Dominik Moritz <domoritz@gmail.com>
|
|
13
|
-
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
|
|
14
|
-
Frank Kovacs <fran70kk@gmail.com>
|
|
15
|
-
Harshita Kalani <harshitakalani02@gmail.com>
|
|
16
|
-
James Gelok <jdgelok@gmail.com>
|
|
17
|
-
Jithin KS <jithinks112@gmail.com>
|
|
18
|
-
Joey Reed <joeyrreed@gmail.com>
|
|
19
|
-
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
|
|
20
|
-
Joris Labie <joris.labie1@gmail.com>
|
|
21
|
-
Justin Dennison <justin1dennison@gmail.com>
|
|
22
|
-
Marcus Fantham <mfantham@users.noreply.github.com>
|
|
23
|
-
Matt Cochrane <matthew.cochrane.eng@gmail.com>
|
|
24
|
-
Milan Raj <rajsite@users.noreply.github.com>
|
|
25
|
-
Momtchil Momtchev <momtchil@momtchev.com>
|
|
26
|
-
Naresh Jagadeesan <naresh.naresh000@gmail.com>
|
|
27
|
-
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
|
|
28
|
-
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
|
|
29
|
-
Philipp Burckhardt <pburckhardt@outlook.com>
|
|
30
|
-
Pranav Goswami <goswami.4@iitj.ac.in>
|
|
31
|
-
Ricky Reusser <rsreusser@gmail.com>
|
|
32
|
-
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
|
|
33
|
-
Ryan Seal <splrk@users.noreply.github.com>
|
|
34
|
-
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
|
|
35
|
-
Shraddheya Shendre <shendreshraddheya@gmail.com>
|
|
36
|
-
Stephannie Jiménez Gacha <steff456@hotmail.com>
|
|
37
|
-
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
|
|
38
|
-
orimiles5 <97595296+orimiles5@users.noreply.github.com>
|
|
39
|
-
rei2hu <reimu@reimu.ws>
|
package/test/fixtures/long.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[4,9,15,20,26,32,37,43,48,54,60,65,71,76,82,88,93,99,105,111,116,122,128,133,139,144,150,156,161,167,172,178,184,189,195,201,207,212,218,224,229,235,240,246,252,257,263,268,274,280,285,291,296,303,308,314,320,325,331,336,342,348,353,359,364,370,376,381,387,392,398]
|
package/test/test.cli.js
DELETED
|
@@ -1,208 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Apache-2.0
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) 2018 The Stdlib Authors.
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
'use strict';
|
|
20
|
-
|
|
21
|
-
// MODULES //
|
|
22
|
-
|
|
23
|
-
var resolve = require( 'path' ).resolve;
|
|
24
|
-
var exec = require( 'child_process' ).exec;
|
|
25
|
-
var tape = require( 'tape' );
|
|
26
|
-
var IS_BROWSER = require( '@stdlib/assert-is-browser' );
|
|
27
|
-
var IS_WINDOWS = require( '@stdlib/assert-is-windows' );
|
|
28
|
-
var readFileSync = require( '@stdlib/fs-read-file' ).sync;
|
|
29
|
-
var EXEC_PATH = require( '@stdlib/process-exec-path' );
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
// VARIABLES //
|
|
33
|
-
|
|
34
|
-
var REGEXP_NUMBER = /[0-9]+\n/;
|
|
35
|
-
var fpath = resolve( __dirname, '..', 'bin', 'cli' );
|
|
36
|
-
var opts = {
|
|
37
|
-
'skip': IS_BROWSER || IS_WINDOWS
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
// FIXTURES //
|
|
42
|
-
|
|
43
|
-
var PKG_VERSION = require( './../package.json' ).version;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
// TESTS //
|
|
47
|
-
|
|
48
|
-
tape( 'command-line interface', function test( t ) {
|
|
49
|
-
t.ok( true, __filename );
|
|
50
|
-
t.end();
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
tape( 'when invoked with a `--help` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) {
|
|
54
|
-
var expected;
|
|
55
|
-
var cmd;
|
|
56
|
-
|
|
57
|
-
expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), {
|
|
58
|
-
'encoding': 'utf8'
|
|
59
|
-
});
|
|
60
|
-
cmd = [
|
|
61
|
-
EXEC_PATH,
|
|
62
|
-
fpath,
|
|
63
|
-
'--help'
|
|
64
|
-
];
|
|
65
|
-
|
|
66
|
-
exec( cmd.join( ' ' ), done );
|
|
67
|
-
|
|
68
|
-
function done( error, stdout, stderr ) {
|
|
69
|
-
if ( error ) {
|
|
70
|
-
t.fail( error.message );
|
|
71
|
-
} else {
|
|
72
|
-
t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' );
|
|
73
|
-
t.strictEqual( stderr.toString(), expected+'\n', 'expected value' );
|
|
74
|
-
}
|
|
75
|
-
t.end();
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
tape( 'when invoked with a `-h` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) {
|
|
80
|
-
var expected;
|
|
81
|
-
var cmd;
|
|
82
|
-
|
|
83
|
-
expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), {
|
|
84
|
-
'encoding': 'utf8'
|
|
85
|
-
});
|
|
86
|
-
cmd = [
|
|
87
|
-
EXEC_PATH,
|
|
88
|
-
fpath,
|
|
89
|
-
'-h'
|
|
90
|
-
];
|
|
91
|
-
|
|
92
|
-
exec( cmd.join( ' ' ), done );
|
|
93
|
-
|
|
94
|
-
function done( error, stdout, stderr ) {
|
|
95
|
-
if ( error ) {
|
|
96
|
-
t.fail( error.message );
|
|
97
|
-
} else {
|
|
98
|
-
t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' );
|
|
99
|
-
t.strictEqual( stderr.toString(), expected+'\n', 'expected value' );
|
|
100
|
-
}
|
|
101
|
-
t.end();
|
|
102
|
-
}
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
tape( 'when invoked with a `--version` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) {
|
|
106
|
-
var cmd = [
|
|
107
|
-
EXEC_PATH,
|
|
108
|
-
fpath,
|
|
109
|
-
'--version'
|
|
110
|
-
];
|
|
111
|
-
|
|
112
|
-
exec( cmd.join( ' ' ), done );
|
|
113
|
-
|
|
114
|
-
function done( error, stdout, stderr ) {
|
|
115
|
-
if ( error ) {
|
|
116
|
-
t.fail( error.message );
|
|
117
|
-
} else {
|
|
118
|
-
t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' );
|
|
119
|
-
t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' );
|
|
120
|
-
}
|
|
121
|
-
t.end();
|
|
122
|
-
}
|
|
123
|
-
});
|
|
124
|
-
|
|
125
|
-
tape( 'when invoked with a `-V` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) {
|
|
126
|
-
var cmd = [
|
|
127
|
-
EXEC_PATH,
|
|
128
|
-
fpath,
|
|
129
|
-
'-V'
|
|
130
|
-
];
|
|
131
|
-
|
|
132
|
-
exec( cmd.join( ' ' ), done );
|
|
133
|
-
|
|
134
|
-
function done( error, stdout, stderr ) {
|
|
135
|
-
if ( error ) {
|
|
136
|
-
t.fail( error.message );
|
|
137
|
-
} else {
|
|
138
|
-
t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' );
|
|
139
|
-
t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' );
|
|
140
|
-
}
|
|
141
|
-
t.end();
|
|
142
|
-
}
|
|
143
|
-
});
|
|
144
|
-
|
|
145
|
-
tape( 'the command-line interface prints the number of ISO weeks in the year for the current date to `stdout`', opts, function test( t ) {
|
|
146
|
-
var cmd = [
|
|
147
|
-
EXEC_PATH,
|
|
148
|
-
fpath
|
|
149
|
-
];
|
|
150
|
-
|
|
151
|
-
exec( cmd.join( ' ' ), done );
|
|
152
|
-
|
|
153
|
-
function done( error, stdout, stderr ) {
|
|
154
|
-
var str;
|
|
155
|
-
if ( error ) {
|
|
156
|
-
t.fail( error.message );
|
|
157
|
-
} else {
|
|
158
|
-
str = stdout.toString();
|
|
159
|
-
t.strictEqual( REGEXP_NUMBER.test( str ), true, 'prints number of ISO weeks in the year to `stdout`' );
|
|
160
|
-
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
|
|
161
|
-
}
|
|
162
|
-
t.end();
|
|
163
|
-
}
|
|
164
|
-
});
|
|
165
|
-
|
|
166
|
-
tape( 'the command-line interface prints the number of ISO weeks in the year of a specified date to `stdout` (leap year)', opts, function test( t ) {
|
|
167
|
-
var cmd = [
|
|
168
|
-
EXEC_PATH,
|
|
169
|
-
fpath,
|
|
170
|
-
2004
|
|
171
|
-
];
|
|
172
|
-
|
|
173
|
-
exec( cmd.join( ' ' ), done );
|
|
174
|
-
|
|
175
|
-
function done( error, stdout, stderr ) {
|
|
176
|
-
var str;
|
|
177
|
-
if ( error ) {
|
|
178
|
-
t.fail( error.message );
|
|
179
|
-
} else {
|
|
180
|
-
str = stdout.toString();
|
|
181
|
-
t.strictEqual( str, '53\n', 'prints number of ISO weeks in the year to `stdout`' );
|
|
182
|
-
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
|
|
183
|
-
}
|
|
184
|
-
t.end();
|
|
185
|
-
}
|
|
186
|
-
});
|
|
187
|
-
|
|
188
|
-
tape( 'the command-line interface prints the number of ISO weeks in the year of a specified date to `stdout` (non-leap year)', opts, function test( t ) {
|
|
189
|
-
var cmd = [
|
|
190
|
-
EXEC_PATH,
|
|
191
|
-
fpath,
|
|
192
|
-
2101
|
|
193
|
-
];
|
|
194
|
-
|
|
195
|
-
exec( cmd.join( ' ' ), done );
|
|
196
|
-
|
|
197
|
-
function done( error, stdout, stderr ) {
|
|
198
|
-
var str;
|
|
199
|
-
if ( error ) {
|
|
200
|
-
t.fail( error.message );
|
|
201
|
-
} else {
|
|
202
|
-
str = stdout.toString();
|
|
203
|
-
t.strictEqual( str, '52\n', 'prints number of ISO weeks in the year to `stdout`' );
|
|
204
|
-
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
|
|
205
|
-
}
|
|
206
|
-
t.end();
|
|
207
|
-
}
|
|
208
|
-
});
|