@thegetty/quire-cli 1.0.0-rc.37 → 1.0.0-rc.39

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.
Files changed (104) hide show
  1. package/package.json +5 -2
  2. package/src/commands/build.js +13 -6
  3. package/src/commands/clean.js +10 -2
  4. package/src/commands/clean.spec.js +10 -0
  5. package/src/commands/clean.test.js +122 -0
  6. package/src/commands/config.js +3 -1
  7. package/src/commands/config.test.js +42 -1
  8. package/src/commands/doctor.js +251 -0
  9. package/src/commands/doctor.spec.js +115 -0
  10. package/src/commands/doctor.test.js +1409 -0
  11. package/src/commands/epub.js +9 -2
  12. package/src/commands/help.js +60 -0
  13. package/src/commands/help.test.js +132 -0
  14. package/src/commands/info.js +79 -71
  15. package/src/commands/info.spec.js +8 -0
  16. package/src/commands/info.test.js +173 -76
  17. package/src/commands/pdf.js +10 -3
  18. package/src/commands/validate.js +39 -7
  19. package/src/commands/validate.spec.js +8 -0
  20. package/src/commands/validate.test.js +144 -0
  21. package/src/errors/help/help-topic-not-found-error.js +22 -0
  22. package/src/errors/help/index.js +8 -0
  23. package/src/errors/index.js +6 -0
  24. package/src/errors/input/index.js +8 -0
  25. package/src/errors/input/invalid-input-error.js +21 -0
  26. package/src/helpers/pager.js +59 -0
  27. package/src/helpers/pager.test.js +85 -0
  28. package/src/lib/README.md +77 -22
  29. package/src/lib/conf/README.md +6 -0
  30. package/src/lib/conf/build-status.js +103 -0
  31. package/src/lib/conf/build-status.test.js +247 -0
  32. package/src/lib/conf/defaults.js +14 -0
  33. package/src/lib/conf/format.js +1 -1
  34. package/src/lib/conf/schema.js +46 -1
  35. package/src/lib/constants.js +28 -0
  36. package/src/lib/doctor/README.md +667 -0
  37. package/src/lib/doctor/checks/environment/cli-version.js +62 -0
  38. package/src/lib/doctor/checks/environment/cli-version.test.js +132 -0
  39. package/src/lib/doctor/checks/environment/git-available.js +77 -0
  40. package/src/lib/doctor/checks/environment/git-available.test.js +52 -0
  41. package/src/lib/doctor/checks/environment/index.js +13 -0
  42. package/src/lib/doctor/checks/environment/node-version.js +66 -0
  43. package/src/lib/doctor/checks/environment/node-version.test.js +17 -0
  44. package/src/lib/doctor/checks/environment/npm-available.js +66 -0
  45. package/src/lib/doctor/checks/environment/npm-available.test.js +52 -0
  46. package/src/lib/doctor/checks/environment/os-info.js +48 -0
  47. package/src/lib/doctor/checks/environment/os-info.test.js +81 -0
  48. package/src/lib/doctor/checks/environment/runtime-info.js +51 -0
  49. package/src/lib/doctor/checks/environment/runtime-info.test.js +132 -0
  50. package/src/lib/doctor/checks/outputs/epub-output.js +119 -0
  51. package/src/lib/doctor/checks/outputs/epub-output.test.js +277 -0
  52. package/src/lib/doctor/checks/outputs/index.js +10 -0
  53. package/src/lib/doctor/checks/outputs/pdf-output.js +144 -0
  54. package/src/lib/doctor/checks/outputs/pdf-output.test.js +377 -0
  55. package/src/lib/doctor/checks/outputs/stale-build.js +122 -0
  56. package/src/lib/doctor/checks/outputs/stale-build.test.js +282 -0
  57. package/src/lib/doctor/checks/project/data-files.js +56 -0
  58. package/src/lib/doctor/checks/project/data-files.test.js +125 -0
  59. package/src/lib/doctor/checks/project/dependencies.js +53 -0
  60. package/src/lib/doctor/checks/project/dependencies.test.js +71 -0
  61. package/src/lib/doctor/checks/project/index.js +11 -0
  62. package/src/lib/doctor/checks/project/quire-11ty.js +98 -0
  63. package/src/lib/doctor/checks/project/quire-11ty.test.js +170 -0
  64. package/src/lib/doctor/checks/project/quire-project.js +38 -0
  65. package/src/lib/doctor/checks/project/quire-project.test.js +47 -0
  66. package/src/lib/doctor/checks/tools/index.js +10 -0
  67. package/src/lib/doctor/checks/tools/pandoc-available.js +82 -0
  68. package/src/lib/doctor/checks/tools/pandoc-available.test.js +73 -0
  69. package/src/lib/doctor/checks/tools/prince-available.js +81 -0
  70. package/src/lib/doctor/checks/tools/prince-available.test.js +73 -0
  71. package/src/lib/doctor/constants.js +39 -0
  72. package/src/lib/doctor/formatDuration.js +108 -0
  73. package/src/lib/doctor/formatDuration.test.js +76 -0
  74. package/src/lib/doctor/formatters/human.js +257 -0
  75. package/src/lib/doctor/formatters/human.test.js +463 -0
  76. package/src/lib/doctor/formatters/index.js +8 -0
  77. package/src/lib/doctor/formatters/json.js +78 -0
  78. package/src/lib/doctor/formatters/json.test.js +174 -0
  79. package/src/lib/doctor/formatters/shared.js +129 -0
  80. package/src/lib/doctor/formatters/shared.test.js +194 -0
  81. package/src/lib/doctor/index.js +271 -0
  82. package/src/lib/doctor/index.test.js +797 -0
  83. package/src/lib/help/frontmatter.js +77 -0
  84. package/src/lib/help/frontmatter.test.js +139 -0
  85. package/src/lib/help/index.js +135 -0
  86. package/src/lib/help/index.test.js +160 -0
  87. package/src/lib/help/topics/configuration.md +77 -0
  88. package/src/lib/help/topics/debugging.md +69 -0
  89. package/src/lib/help/topics/epub.md +74 -0
  90. package/src/lib/help/topics/pdf.md +74 -0
  91. package/src/lib/help/topics/publishing.md +80 -0
  92. package/src/lib/help/topics/workflows.md +50 -0
  93. package/src/lib/platform.js +95 -0
  94. package/src/lib/project/build.js +44 -25
  95. package/src/lib/project/build.test.js +30 -8
  96. package/src/lib/project/detect.js +16 -2
  97. package/src/lib/project/index.js +18 -2
  98. package/src/lib/project/output-paths.js +87 -0
  99. package/src/lib/project/output-paths.test.js +66 -0
  100. package/src/lib/project/paths.js +48 -0
  101. package/src/main.js +38 -3
  102. package/src/packageConfig.js +17 -0
  103. package/src/validators/validate-data-files.js +154 -0
  104. package/src/validators/validate-data-files.test.js +217 -0
@@ -0,0 +1,170 @@
1
+ import test from 'ava'
2
+ import sinon from 'sinon'
3
+ import esmock from 'esmock'
4
+
5
+ test.beforeEach((t) => {
6
+ t.context.sandbox = sinon.createSandbox()
7
+ })
8
+
9
+ test.afterEach.always((t) => {
10
+ t.context.sandbox.restore()
11
+ })
12
+
13
+ test('checkOutdatedQuire11ty returns N/A when package.json does not exist', async (t) => {
14
+ const { sandbox } = t.context
15
+
16
+ const { checkOutdatedQuire11ty } = await esmock('./quire-11ty.js', {
17
+ 'node:fs': {
18
+ default: {
19
+ existsSync: sandbox.stub().returns(false),
20
+ },
21
+ },
22
+ })
23
+
24
+ const result = await checkOutdatedQuire11ty()
25
+
26
+ t.true(result.ok)
27
+ t.is(result.level, 'na')
28
+ t.regex(result.message, /not installed/)
29
+ })
30
+
31
+ test('checkOutdatedQuire11ty returns N/A when package.json is not a quire-11ty project', async (t) => {
32
+ const { sandbox } = t.context
33
+
34
+ const { checkOutdatedQuire11ty } = await esmock('./quire-11ty.js', {
35
+ 'node:fs': {
36
+ default: {
37
+ existsSync: sandbox.stub().returns(true),
38
+ readFileSync: sandbox.stub().returns(JSON.stringify({
39
+ name: 'some-other-package',
40
+ version: '1.0.0',
41
+ })),
42
+ },
43
+ },
44
+ })
45
+
46
+ const result = await checkOutdatedQuire11ty()
47
+
48
+ t.true(result.ok)
49
+ t.is(result.level, 'na')
50
+ t.regex(result.message, /not installed/)
51
+ })
52
+
53
+ test('checkOutdatedQuire11ty returns ok when version is up to date', async (t) => {
54
+ const { sandbox } = t.context
55
+
56
+ const { checkOutdatedQuire11ty } = await esmock('./quire-11ty.js', {
57
+ 'node:fs': {
58
+ default: {
59
+ existsSync: sandbox.stub().returns(true),
60
+ readFileSync: sandbox.stub().returns(JSON.stringify({
61
+ name: '@thegetty/quire-11ty',
62
+ version: '1.0.0-rc.33',
63
+ })),
64
+ },
65
+ },
66
+ '#lib/npm/index.js': {
67
+ default: {
68
+ view: sandbox.stub().resolves('1.0.0-rc.33'),
69
+ },
70
+ },
71
+ '#lib/conf/config.js': {
72
+ default: {
73
+ get: sandbox.stub().returns('rc'),
74
+ },
75
+ },
76
+ })
77
+
78
+ const result = await checkOutdatedQuire11ty()
79
+
80
+ t.true(result.ok)
81
+ t.regex(result.message, /1\.0\.0-rc\.33/)
82
+ t.regex(result.message, /up to date/)
83
+ })
84
+
85
+ test('checkOutdatedQuire11ty returns warning when version is outdated', async (t) => {
86
+ const { sandbox } = t.context
87
+
88
+ const { checkOutdatedQuire11ty } = await esmock('./quire-11ty.js', {
89
+ 'node:fs': {
90
+ default: {
91
+ existsSync: sandbox.stub().returns(true),
92
+ readFileSync: sandbox.stub().returns(JSON.stringify({
93
+ name: '@thegetty/quire-11ty',
94
+ version: '1.0.0-rc.30',
95
+ })),
96
+ },
97
+ },
98
+ '#lib/npm/index.js': {
99
+ default: {
100
+ view: sandbox.stub().resolves('1.0.0-rc.33'),
101
+ },
102
+ },
103
+ '#lib/conf/config.js': {
104
+ default: {
105
+ get: sandbox.stub().returns('rc'),
106
+ },
107
+ },
108
+ })
109
+
110
+ const result = await checkOutdatedQuire11ty()
111
+
112
+ t.false(result.ok)
113
+ t.is(result.level, 'warn')
114
+ t.regex(result.message, /1\.0\.0-rc\.30 installed/)
115
+ t.regex(result.message, /1\.0\.0-rc\.33 available/)
116
+ t.truthy(result.remediation)
117
+ t.truthy(result.docsUrl)
118
+ })
119
+
120
+ test('checkOutdatedQuire11ty returns warning when cannot read installed version', async (t) => {
121
+ const { sandbox } = t.context
122
+
123
+ const { checkOutdatedQuire11ty } = await esmock('./quire-11ty.js', {
124
+ 'node:fs': {
125
+ default: {
126
+ existsSync: sandbox.stub().returns(true),
127
+ readFileSync: sandbox.stub().throws(new Error('ENOENT')),
128
+ },
129
+ },
130
+ })
131
+
132
+ const result = await checkOutdatedQuire11ty()
133
+
134
+ t.false(result.ok)
135
+ t.is(result.level, 'warn')
136
+ t.regex(result.message, /Could not read/)
137
+ t.truthy(result.remediation)
138
+ })
139
+
140
+ test('checkOutdatedQuire11ty returns ok with message when network check fails', async (t) => {
141
+ const { sandbox } = t.context
142
+
143
+ const { checkOutdatedQuire11ty } = await esmock('./quire-11ty.js', {
144
+ 'node:fs': {
145
+ default: {
146
+ existsSync: sandbox.stub().returns(true),
147
+ readFileSync: sandbox.stub().returns(JSON.stringify({
148
+ name: '@thegetty/quire-11ty',
149
+ version: '1.0.0-rc.30',
150
+ })),
151
+ },
152
+ },
153
+ '#lib/npm/index.js': {
154
+ default: {
155
+ view: sandbox.stub().rejects(new Error('Network error')),
156
+ },
157
+ },
158
+ '#lib/conf/config.js': {
159
+ default: {
160
+ get: sandbox.stub().returns('rc'),
161
+ },
162
+ },
163
+ })
164
+
165
+ const result = await checkOutdatedQuire11ty()
166
+
167
+ t.true(result.ok)
168
+ t.regex(result.message, /1\.0\.0-rc\.30/)
169
+ t.regex(result.message, /could not check/)
170
+ })
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Quire project detection check
3
+ *
4
+ * @module lib/doctor/checks/project/quire-project
5
+ */
6
+ import fs from 'node:fs'
7
+ import { PROJECT_MARKERS } from '#lib/project/index.js'
8
+ import createDebug from '#debug'
9
+ import { DOCS_BASE_URL } from '#lib/doctor/constants.js'
10
+
11
+ const debug = createDebug('lib:doctor:quire-project')
12
+
13
+ /**
14
+ * Check if current directory is a Quire project
15
+ * @returns {import('../../index.js').CheckResult}
16
+ */
17
+ export function checkQuireProject() {
18
+ const found = PROJECT_MARKERS.find((marker) => fs.existsSync(marker))
19
+ debug('Quire project marker: %s', found || 'none')
20
+
21
+ if (found) {
22
+ return {
23
+ ok: true,
24
+ message: `Detected via ${found}`,
25
+ }
26
+ }
27
+
28
+ return {
29
+ ok: false,
30
+ message: 'No Quire project marker found',
31
+ remediation: `This command should be run from within a Quire project directory.
32
+ • Navigate to your project: cd your-project-name
33
+ • Or create a new project: quire new my-project`,
34
+ docsUrl: `${DOCS_BASE_URL}/quire-commands/#start-a-new-project`,
35
+ }
36
+ }
37
+
38
+ export default checkQuireProject
@@ -0,0 +1,47 @@
1
+ import test from 'ava'
2
+ import sinon from 'sinon'
3
+ import esmock from 'esmock'
4
+
5
+ test.beforeEach((t) => {
6
+ t.context.sandbox = sinon.createSandbox()
7
+ })
8
+
9
+ test.afterEach.always((t) => {
10
+ t.context.sandbox.restore()
11
+ })
12
+
13
+ test('checkQuireProject returns ok when marker file exists', async (t) => {
14
+ const { sandbox } = t.context
15
+
16
+ const { checkQuireProject } = await esmock('./quire-project.js', {
17
+ 'node:fs': {
18
+ default: {
19
+ existsSync: sandbox.stub().callsFake((path) => path === '.quire'),
20
+ },
21
+ },
22
+ })
23
+
24
+ const result = checkQuireProject()
25
+
26
+ t.true(result.ok)
27
+ t.regex(result.message, /Detected via \.quire/)
28
+ })
29
+
30
+ test('checkQuireProject returns not ok when no marker file exists', async (t) => {
31
+ const { sandbox } = t.context
32
+
33
+ const { checkQuireProject } = await esmock('./quire-project.js', {
34
+ 'node:fs': {
35
+ default: {
36
+ existsSync: sandbox.stub().returns(false),
37
+ },
38
+ },
39
+ })
40
+
41
+ const result = checkQuireProject()
42
+
43
+ t.false(result.ok)
44
+ t.regex(result.message, /No Quire project marker/)
45
+ t.truthy(result.remediation, 'should include remediation guidance')
46
+ t.truthy(result.docsUrl, 'should include documentation link')
47
+ })
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Tool checks
3
+ *
4
+ * Optional external tools that enhance Quire output capabilities.
5
+ * These are not required for core Quire functionality.
6
+ *
7
+ * @module lib/doctor/checks/tools
8
+ */
9
+ export { checkPrinceAvailable } from './prince-available.js'
10
+ export { checkPandocAvailable } from './pandoc-available.js'
@@ -0,0 +1,82 @@
1
+ /**
2
+ * Pandoc availability check
3
+ *
4
+ * Checks if Pandoc is installed and available in PATH.
5
+ * Pandoc is an optional EPUB engine - only required when using --engine pandoc.
6
+ *
7
+ * @module lib/doctor/checks/tools/pandoc-available
8
+ */
9
+ import which from 'which'
10
+ import createDebug from '#debug'
11
+ import { getPlatform, Platform } from '#lib/platform.js'
12
+ import { DOCS_BASE_URL } from '#lib/doctor/constants.js'
13
+
14
+ const debug = createDebug('lib:doctor:pandoc-available')
15
+
16
+ /**
17
+ * Get pandoc binary path if available
18
+ * @returns {string|null} Path to pandoc binary or null if not found
19
+ */
20
+ function getPandocPath() {
21
+ return which.sync('pandoc', { nothrow: true })
22
+ }
23
+
24
+ /**
25
+ * Get OS-specific Pandoc installation instructions
26
+ * @returns {string}
27
+ */
28
+ function getRemediation() {
29
+ const platform = getPlatform()
30
+
31
+ switch (platform) {
32
+ case Platform.MACOS:
33
+ return `Pandoc is optional (only needed for --engine pandoc).
34
+ • Install via Homebrew: brew install pandoc
35
+ • Or download from: https://pandoc.org/installing.html`
36
+ case Platform.WINDOWS:
37
+ return `Pandoc is optional (only needed for --engine pandoc).
38
+ • Install via winget: winget install --source winget --exact --id JohnMacFarlane.Pandoc
39
+ • Or download from: https://pandoc.org/installing.html
40
+ • Restart your terminal after installation`
41
+ case Platform.LINUX:
42
+ return `Pandoc is optional (only needed for --engine pandoc).
43
+ • Install via package manager: apt install pandoc / dnf install pandoc
44
+ • Or download from: https://pandoc.org/installing.html`
45
+ default:
46
+ return `Pandoc is optional (only needed for --engine pandoc).
47
+ • Download from: https://pandoc.org/installing.html`
48
+ }
49
+ }
50
+
51
+ /**
52
+ * Check Pandoc is available in PATH
53
+ *
54
+ * This is an optional check - Pandoc is only required when using
55
+ * the --engine pandoc option for EPUB generation. The default engine
56
+ * (epubjs) does not require Pandoc.
57
+ *
58
+ * @returns {import('../../index.js').CheckResult}
59
+ */
60
+ export function checkPandocAvailable() {
61
+ const pandocPath = getPandocPath()
62
+ const ok = !!pandocPath
63
+ debug('pandoc available: %s', ok)
64
+
65
+ if (ok) {
66
+ return {
67
+ ok: true,
68
+ message: 'installed',
69
+ details: pandocPath,
70
+ }
71
+ }
72
+
73
+ return {
74
+ ok: false,
75
+ level: 'warn',
76
+ message: 'not found (optional)',
77
+ remediation: getRemediation(),
78
+ docsUrl: `${DOCS_BASE_URL}/quire-commands/#epub`,
79
+ }
80
+ }
81
+
82
+ export default checkPandocAvailable
@@ -0,0 +1,73 @@
1
+ import test from 'ava'
2
+ import sinon from 'sinon'
3
+ import esmock from 'esmock'
4
+
5
+ test.beforeEach((t) => {
6
+ t.context.sandbox = sinon.createSandbox()
7
+ })
8
+
9
+ test.afterEach.always((t) => {
10
+ t.context.sandbox.restore()
11
+ })
12
+
13
+ test('checkPandocAvailable returns ok when pandoc is available', async (t) => {
14
+ const { sandbox } = t.context
15
+
16
+ const { checkPandocAvailable } = await esmock('./pandoc-available.js', {
17
+ which: {
18
+ sync: sandbox.stub().returns('/usr/local/bin/pandoc'),
19
+ },
20
+ })
21
+
22
+ const result = checkPandocAvailable()
23
+
24
+ t.true(result.ok)
25
+ t.regex(result.message, /installed/)
26
+ t.is(result.details, '/usr/local/bin/pandoc')
27
+ })
28
+
29
+ test('checkPandocAvailable returns warning when pandoc is missing', async (t) => {
30
+ const { sandbox } = t.context
31
+
32
+ const { checkPandocAvailable } = await esmock('./pandoc-available.js', {
33
+ which: {
34
+ sync: sandbox.stub().returns(null),
35
+ },
36
+ })
37
+
38
+ const result = checkPandocAvailable()
39
+
40
+ t.false(result.ok)
41
+ t.is(result.level, 'warn', 'should be a warning, not an error')
42
+ t.is(result.message, 'not found (optional)')
43
+ t.truthy(result.remediation, 'should include remediation guidance')
44
+ t.truthy(result.docsUrl, 'should include documentation link')
45
+ })
46
+
47
+ test('checkPandocAvailable remediation includes download link', async (t) => {
48
+ const { sandbox } = t.context
49
+
50
+ const { checkPandocAvailable } = await esmock('./pandoc-available.js', {
51
+ which: {
52
+ sync: sandbox.stub().returns(null),
53
+ },
54
+ })
55
+
56
+ const result = checkPandocAvailable()
57
+
58
+ t.regex(result.remediation, /pandoc\.org/, 'should include Pandoc download URL')
59
+ })
60
+
61
+ test('checkPandocAvailable remediation mentions --engine pandoc', async (t) => {
62
+ const { sandbox } = t.context
63
+
64
+ const { checkPandocAvailable } = await esmock('./pandoc-available.js', {
65
+ which: {
66
+ sync: sandbox.stub().returns(null),
67
+ },
68
+ })
69
+
70
+ const result = checkPandocAvailable()
71
+
72
+ t.regex(result.remediation, /--engine pandoc/, 'should mention --engine pandoc flag')
73
+ })
@@ -0,0 +1,81 @@
1
+ /**
2
+ * PrinceXML availability check
3
+ *
4
+ * Checks if PrinceXML is installed and available in PATH.
5
+ * PrinceXML is an optional PDF engine - only required when using --engine prince.
6
+ *
7
+ * @module lib/doctor/checks/tools/prince-available
8
+ */
9
+ import which from 'which'
10
+ import createDebug from '#debug'
11
+ import { getPlatform, Platform } from '#lib/platform.js'
12
+ import { DOCS_BASE_URL } from '#lib/doctor/constants.js'
13
+
14
+ const debug = createDebug('lib:doctor:prince-available')
15
+
16
+ /**
17
+ * Get prince binary path if available
18
+ * @returns {string|null} Path to prince binary or null if not found
19
+ */
20
+ function getPrincePath() {
21
+ return which.sync('prince', { nothrow: true })
22
+ }
23
+
24
+ /**
25
+ * Get OS-specific PrinceXML installation instructions
26
+ * @returns {string}
27
+ */
28
+ function getRemediation() {
29
+ const platform = getPlatform()
30
+
31
+ switch (platform) {
32
+ case Platform.MACOS:
33
+ return `PrinceXML is optional (only needed for --engine prince).
34
+ • Download from: https://www.princexml.com/download/
35
+ • Or install via Homebrew: brew install --cask prince`
36
+ case Platform.WINDOWS:
37
+ return `PrinceXML is optional (only needed for --engine prince).
38
+ • Download from: https://www.princexml.com/download/
39
+ • Restart your terminal after installation`
40
+ case Platform.LINUX:
41
+ return `PrinceXML is optional (only needed for --engine prince).
42
+ • Download from: https://www.princexml.com/download/
43
+ • Follow platform-specific installation instructions`
44
+ default:
45
+ return `PrinceXML is optional (only needed for --engine prince).
46
+ • Download from: https://www.princexml.com/download/`
47
+ }
48
+ }
49
+
50
+ /**
51
+ * Check PrinceXML is available in PATH
52
+ *
53
+ * This is an optional check - PrinceXML is only required when using
54
+ * the --engine prince option for PDF generation. The default engine
55
+ * (Paged.js) does not require PrinceXML.
56
+ *
57
+ * @returns {import('../../index.js').CheckResult}
58
+ */
59
+ export function checkPrinceAvailable() {
60
+ const princePath = getPrincePath()
61
+ const ok = !!princePath
62
+ debug('prince available: %s', ok)
63
+
64
+ if (ok) {
65
+ return {
66
+ ok: true,
67
+ message: 'installed',
68
+ details: princePath,
69
+ }
70
+ }
71
+
72
+ return {
73
+ ok: false,
74
+ level: 'warn',
75
+ message: 'not found (optional)',
76
+ remediation: getRemediation(),
77
+ docsUrl: `${DOCS_BASE_URL}/quire-commands/#pdf`,
78
+ }
79
+ }
80
+
81
+ export default checkPrinceAvailable
@@ -0,0 +1,73 @@
1
+ import test from 'ava'
2
+ import sinon from 'sinon'
3
+ import esmock from 'esmock'
4
+
5
+ test.beforeEach((t) => {
6
+ t.context.sandbox = sinon.createSandbox()
7
+ })
8
+
9
+ test.afterEach.always((t) => {
10
+ t.context.sandbox.restore()
11
+ })
12
+
13
+ test('checkPrinceAvailable returns ok when prince is available', async (t) => {
14
+ const { sandbox } = t.context
15
+
16
+ const { checkPrinceAvailable } = await esmock('./prince-available.js', {
17
+ which: {
18
+ sync: sandbox.stub().returns('/usr/local/bin/prince'),
19
+ },
20
+ })
21
+
22
+ const result = checkPrinceAvailable()
23
+
24
+ t.true(result.ok)
25
+ t.regex(result.message, /installed/)
26
+ t.is(result.details, '/usr/local/bin/prince')
27
+ })
28
+
29
+ test('checkPrinceAvailable returns warning when prince is missing', async (t) => {
30
+ const { sandbox } = t.context
31
+
32
+ const { checkPrinceAvailable } = await esmock('./prince-available.js', {
33
+ which: {
34
+ sync: sandbox.stub().returns(null),
35
+ },
36
+ })
37
+
38
+ const result = checkPrinceAvailable()
39
+
40
+ t.false(result.ok)
41
+ t.is(result.level, 'warn', 'should be a warning, not an error')
42
+ t.is(result.message, 'not found (optional)')
43
+ t.truthy(result.remediation, 'should include remediation guidance')
44
+ t.truthy(result.docsUrl, 'should include documentation link')
45
+ })
46
+
47
+ test('checkPrinceAvailable remediation includes download link', async (t) => {
48
+ const { sandbox } = t.context
49
+
50
+ const { checkPrinceAvailable } = await esmock('./prince-available.js', {
51
+ which: {
52
+ sync: sandbox.stub().returns(null),
53
+ },
54
+ })
55
+
56
+ const result = checkPrinceAvailable()
57
+
58
+ t.regex(result.remediation, /princexml\.com/, 'should include PrinceXML download URL')
59
+ })
60
+
61
+ test('checkPrinceAvailable remediation mentions --engine prince', async (t) => {
62
+ const { sandbox } = t.context
63
+
64
+ const { checkPrinceAvailable } = await esmock('./prince-available.js', {
65
+ which: {
66
+ sync: sandbox.stub().returns(null),
67
+ },
68
+ })
69
+
70
+ const result = checkPrinceAvailable()
71
+
72
+ t.regex(result.remediation, /--engine prince/, 'should mention --engine prince flag')
73
+ })
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Re-export shared constants for doctor checks
3
+ *
4
+ * This module re-exports constants from the shared lib/constants.js
5
+ * to maintain backwards compatibility with existing doctor check imports.
6
+ *
7
+ * @module lib/doctor/constants
8
+ */
9
+ export {
10
+ DOCS_BASE_URL,
11
+ QUIRE_11TY_PACKAGE,
12
+ REQUIRED_NODE_VERSION,
13
+ } from '#lib/constants.js'
14
+
15
+ /**
16
+ * Stale threshold intervals in milliseconds, keyed by setting name.
17
+ *
18
+ * Used by output checks (stale-build, pdf-output, epub-output) to determine
19
+ * how much time must elapse before an output is flagged as stale.
20
+ *
21
+ * @constant {Object<string, number>}
22
+ */
23
+ export const STALE_THRESHOLDS = Object.freeze({
24
+ ZERO: 0,
25
+ SHORT: 5 * 60 * 1000,
26
+ HOURLY: 60 * 60 * 1000,
27
+ DAILY: 12 * 60 * 60 * 1000,
28
+ NEVER: Infinity,
29
+ })
30
+
31
+ /**
32
+ * Resolve the staleThreshold config value to milliseconds.
33
+ *
34
+ * @param {string} value - One of the STALE_THRESHOLDS keys
35
+ * @returns {number} Threshold in milliseconds
36
+ */
37
+ export function resolveStaleThreshold(value) {
38
+ return STALE_THRESHOLDS[value] ?? STALE_THRESHOLDS.HOURLY
39
+ }