Skip to content

Commit 302fe6b

Browse files
committed
testing(docs-component): add test for docs component
1 parent 2e02654 commit 302fe6b

File tree

2 files changed

+287
-11
lines changed

2 files changed

+287
-11
lines changed

components/DocsHelp.tsx

+37-11
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,19 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
7171
};
7272

7373
return (
74-
<section className='mt-10 mb-4 text-gray-600 dark:text-white'>
75-
<h2 className='text-[24px] font-semibold'>Need Help?</h2>
74+
<section
75+
className='mt-10 mb-4 text-gray-600 dark:text-white'
76+
data-test='docs-help'
77+
>
78+
<h2 className='text-[24px] font-semibold' data-test='need-help-heading'>
79+
Need Help?
80+
</h2>
7681
<div className='grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-8 pt-10 border-t border-gray-600'>
7782
<div>
78-
<h3 className='text-xl font-semibold mb-3'>
83+
<h3
84+
className='text-xl font-semibold mb-3'
85+
data-test='feedback-main-heading'
86+
>
7987
Did you find these docs helpful?
8088
</h3>
8189

@@ -85,6 +93,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
8593
className='flex flex-col'
8694
onSubmit={createFeedbackHandler}
8795
ref={feedbackFormRef}
96+
data-test='feedback-form'
8897
>
8998
<div className='mb-6'>
9099
<input
@@ -101,6 +110,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
101110
onClick={() => {
102111
setIsFormOpen(true);
103112
}}
113+
data-test='feedback-survey-yes-button'
104114
>
105115
<svg
106116
className='inline-block select-none overflow-visible'
@@ -129,6 +139,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
129139
onClick={() => {
130140
setIsFormOpen(true);
131141
}}
142+
data-test='feedback-survey-no-button'
132143
>
133144
<svg
134145
className='inline-block select-none overflow-visible'
@@ -148,7 +159,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
148159
{isFormOpen && (
149160
<div>
150161
<div className='mb-4'>
151-
<p>
162+
<p data-test='feedback-form-comment'>
152163
<label
153164
className='mb-1 block'
154165
htmlFor='feedback-comment'
@@ -165,6 +176,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
165176
className='py-2 text-[14px] min-h-[28px] px-[12px] align-middle border border-solid border-[#aaaaaa] rounded-md w-full overflow-hidden'
166177
name='feedback-comment'
167178
id='feedback-comment'
179+
data-test='feedback-form-input'
168180
/>
169181
</div>
170182

@@ -173,6 +185,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
173185
type='submit'
174186
className={`px-[16px] py-[7px] cursor-pointer border-solid border-[#aaaaaa] border rounded-md ${isSubmitting ? 'cursor-not-allowed opacity-50' : 'hover:bg-gray-200 dark:hover:bg-gray-600'}`}
175187
disabled={isSubmitting}
188+
data-test='feedback-submit-button'
176189
>
177190
<svg
178191
className='inline-block select-none align-text-bottom mr-1'
@@ -196,6 +209,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
196209
className={`px-[16px] py-[7px] cursor-pointer border-solid border-[#aaaaaa] border rounded-md ${isSubmitting ? 'cursor-not-allowed opacity-50' : 'hover:bg-gray-200 dark:hover:bg-gray-600'}`}
197210
disabled={isSubmitting}
198211
onClick={createGitHubIssueHandler}
212+
data-test='create-github-issue-button'
199213
>
200214
<svg
201215
className='inline-block select-none align-text-bottom mr-1'
@@ -220,7 +234,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
220234

221235
{feedbackStatus === 'feedback' && (
222236
<div className='my-6 text-[14px]'>
223-
<p>
237+
<p data-test='feedback-form-success-message'>
224238
Thanks for the feedback! Feel free to join the&nbsp;
225239
<a
226240
target='_blank'
@@ -246,7 +260,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
246260

247261
{feedbackStatus === 'github_issue' && (
248262
<div className='my-6 text-[14px]'>
249-
<p>
263+
<p data-test='feedback-form-github-success-message'>
250264
Thanks for creating an issue! Let's continue the discussion
251265
there!
252266
</p>
@@ -255,18 +269,21 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
255269

256270
{error && (
257271
<div className='my-6 text-[14px]'>
258-
<p>{error}</p>
272+
<p data-test='feedback-form-error-message'>{error}</p>
259273
</div>
260274
)}
261275
</div>
262276

263277
<div>
264-
<h3 className='text-xl font-semibold mb-3'>
278+
<h3
279+
className='text-xl font-semibold mb-3'
280+
data-test='contribute-docs-heading'
281+
>
265282
Help us make our docs great!
266283
</h3>
267284

268285
<div className='my-6 text-[14px]'>
269-
<p>
286+
<p data-test='contribute-docs-description'>
270287
At JSON Schema, we value docs contributions as much as every other
271288
type of contribution!
272289
</p>
@@ -277,6 +294,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
277294
rel='noreferrer'
278295
className='px-[16px] py-[8px] cursor-pointer border-solid border-[#aaaaaa] border rounded-md hover:bg-gray-200 dark:hover:bg-gray-600'
279296
href={`https://github.com/json-schema-org/website/blob/main/pages${markdownFile ? (markdownFile === '_indexPage' ? extractPathWithoutFragment(router.asPath) + '/_index.md' : extractPathWithoutFragment(router.asPath) + '.md') : `/${path}/index.page.tsx`}`}
297+
data-test='edit-on-github-link'
280298
>
281299
<svg
282300
className='inline-block select-none align-text-bottom mr-1'
@@ -298,6 +316,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
298316
rel='noreferrer'
299317
className='underline'
300318
href='https://github.com/json-schema-org/website/blob/main/CONTRIBUTING.md'
319+
data-test='learn-to-contribute-link'
301320
>
302321
<svg
303322
className='inline-block select-none align-text-bottom mr-1'
@@ -319,10 +338,15 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
319338
</div>
320339

321340
<div>
322-
<h3 className='text-xl font-semibold mb-3'>Still Need Help?</h3>
341+
<h3
342+
className='text-xl font-semibold mb-3'
343+
data-test='additional-help-heading'
344+
>
345+
Still Need Help?
346+
</h3>
323347

324348
<div className='my-6 text-[14px]'>
325-
<p>
349+
<p data-test='additional-help-description'>
326350
Learning JSON Schema is often confusing, but don't worry, we are
327351
here to help!.
328352
</p>
@@ -333,6 +357,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
333357
rel='noreferrer'
334358
className='underline'
335359
href='https://github.com/orgs/json-schema-org/discussions/new?category=q-a'
360+
data-test='ask-on-github-link'
336361
>
337362
<svg
338363
className='inline-block select-none align-text-bottom mr-1'
@@ -354,6 +379,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
354379
rel='noreferrer'
355380
className='underline'
356381
href='https://json-schema.org/slack'
382+
data-test='ask-on-slack-link'
357383
>
358384
<svg
359385
className='inline-block select-none align-text-bottom mr-1'

0 commit comments

Comments
 (0)