1
0
mirror of synced 2025-12-21 10:57:10 -05:00
Files
docs/tests/rendering/breadcrumbs.js
Mike Surowiec a511c95c7f SCSS and Component cleanup (pt 1) (#20572)
* turn article.scss into a module + componentized

* Update Survey to use only component styles, add cancel button

* Update GenericError + 404 page to use only standard classes

* update LearningTrack to not use markdown-body

* remove / consolidate stylesheets

* cleanup Graphiql explorer page and scss

* Componentize Breadcrumb styles

* Componentize DeprecationBanner styles

* scope h2 a link style to markdown-body

* cleanup nav, organize page-header and page-footer components

* remove unused scroll-button.scss

* organize LanguagePicker and ProductPicker

* add declarations file

* remove featured-links.scss, update tests

* update list utility and toc test

* fix bad merge resolution

* update breadcrumbs test
2021-07-29 17:27:20 +00:00

209 lines
7.6 KiB
JavaScript

import { getDOM, getJSON } from '../helpers/supertest.js'
import { jest } from '@jest/globals'
const describeInternalOnly =
process.env.GITHUB_REPOSITORY === 'github/docs-internal' ? describe : describe.skip
describe('breadcrumbs', () => {
jest.setTimeout(300 * 1000)
describe('rendering', () => {
test('top-level product pages have breadcrumbs', async () => {
const $ = await getDOM('/github')
expect($('[data-testid=breadcrumbs]')).toHaveLength(1)
})
test('article pages have breadcrumbs with product, category, maptopic, and article', async () => {
const $ = await getDOM(
'/github/authenticating-to-github/troubleshooting-ssh/using-ssh-over-the-https-port'
)
const $breadcrumbs = $('[data-testid=breadcrumbs] a')
expect($breadcrumbs).toHaveLength(4)
expect($breadcrumbs[0].attribs.title).toBe('product: GitHub')
expect($breadcrumbs[1].attribs.title).toBe('category: Authentication')
expect($breadcrumbs[2].attribs.title).toBe('mapTopic: Troubleshooting SSH')
expect($breadcrumbs[3].attribs.title).toBe('article: Use SSH over HTTPS port')
})
test('maptopic pages include their own grayed-out breadcrumb', async () => {
const $ = await getDOM(
'/github/authenticating-to-github/keeping-your-account-and-data-secure'
)
const $breadcrumbs = $('[data-testid=breadcrumbs] a')
expect($breadcrumbs).toHaveLength(3)
expect($breadcrumbs[0].attribs.title).toBe('product: GitHub')
expect($breadcrumbs[1].attribs.title).toBe('category: Authentication')
expect($breadcrumbs[2].attribs.title).toBe('mapTopic: Account security')
expect($breadcrumbs[2].attribs.class.includes('color-text-tertiary')).toBe(true)
})
test('works for enterprise user pages', async () => {
const $ = await getDOM(
'/en/enterprise-server/github/authenticating-to-github/troubleshooting-ssh/recovering-your-ssh-key-passphrase'
)
const $breadcrumbs = $('[data-testid=breadcrumbs] a')
expect($breadcrumbs).toHaveLength(4)
expect($breadcrumbs[0].attribs.title).toBe('product: GitHub')
})
test('parses Liquid variables inside titles', async () => {
const $ = await getDOM('/en/enterprise/admin/enterprise-support')
const $breadcrumbs = $('[data-testid=breadcrumbs] a')
expect($breadcrumbs).toHaveLength(2)
expect($breadcrumbs[1].attribs.title).toBe('category: Working with support')
})
test('English breadcrumbs link to English pages', async () => {
const $ = await getDOM('/en/github/setting-up-and-managing-your-github-user-account')
const $breadcrumbs = $('[data-testid=breadcrumbs] a')
expect($breadcrumbs[0].attribs.href).toBe('/en/github')
})
test('localized breadcrumbs link to localize pages', async () => {
const $ = await getDOM('/ja/github/setting-up-and-managing-your-github-user-account')
const $breadcrumbs = $('[data-testid=breadcrumbs] a')
expect($breadcrumbs[0].attribs.href).toBe('/ja/github')
})
})
describeInternalOnly('early access rendering', () => {
test('top-level product pages have breadcrumbs', async () => {
const $ = await getDOM('/early-access/github/articles/using-gist-playground')
expect($('[data-testid=breadcrumbs]')).toHaveLength(1)
})
test('early access article pages have breadcrumbs with product, category, and article', async () => {
const $ = await getDOM(
'/early-access/github/enforcing-best-practices-with-github-policies/about-github-policies'
)
const $breadcrumbTitles = $('[data-testid=breadcrumbs] [data-testid=breadcrumb-title]')
const $breadcrumbLinks = $('[data-testid=breadcrumbs] a')
expect($breadcrumbTitles).toHaveLength(2)
expect($breadcrumbLinks).toHaveLength(2)
expect($breadcrumbTitles[0].children[0].data).toBe('Early Access documentation')
expect($breadcrumbTitles[1].children[0].data).toBe('GitHub')
expect($breadcrumbLinks[0].attribs.title).toBe(
'category: Enforcing best practices with GitHub Policies'
)
expect($breadcrumbLinks[1].attribs.title).toBe('article: About GitHub Policies')
expect($breadcrumbLinks[1].attribs.class.includes('color-text-tertiary')).toBe(true)
})
})
describe('breadcrumbs object', () => {
test('works on product index pages', async () => {
const breadcrumbs = await getJSON('/en/github?json=breadcrumbs')
const expected = [
{
documentType: 'product',
href: '/en/github',
title: 'GitHub',
},
]
expect(breadcrumbs).toEqual(expected)
})
test('works on category index pages', async () => {
const breadcrumbs = await getJSON('/en/github/authenticating-to-github?json=breadcrumbs')
const expected = [
{
documentType: 'product',
href: '/en/github',
title: 'GitHub',
},
{
documentType: 'category',
href: '/en/github/authenticating-to-github',
title: 'Authentication',
},
]
expect(breadcrumbs).toEqual(expected)
})
test('works on maptopic pages', async () => {
const breadcrumbs = await getJSON(
'/en/github/authenticating-to-github/keeping-your-account-and-data-secure?json=breadcrumbs'
)
const expected = [
{
documentType: 'product',
href: '/en/github',
title: 'GitHub',
},
{
documentType: 'category',
href: '/en/github/authenticating-to-github',
title: 'Authentication',
},
{
documentType: 'mapTopic',
href: '/en/github/authenticating-to-github/keeping-your-account-and-data-secure',
title: 'Account security',
},
]
expect(breadcrumbs).toEqual(expected)
})
test('works on articles that DO have maptopics ', async () => {
const breadcrumbs = await getJSON(
'/en/github/authenticating-to-github/creating-a-strong-password?json=breadcrumbs'
)
const expected = [
{
documentType: 'product',
href: '/en/github',
title: 'GitHub',
},
{
documentType: 'category',
href: '/en/github/authenticating-to-github',
title: 'Authentication',
},
{
documentType: 'mapTopic',
href: '/en/github/authenticating-to-github/keeping-your-account-and-data-secure',
title: 'Account security',
},
{
documentType: 'article',
href: '/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-strong-password',
title: 'Create a strong password',
},
]
expect(breadcrumbs).toEqual(expected)
})
test('works on articles that DO NOT have maptopics ', async () => {
const breadcrumbs = await getJSON(
'/github/site-policy/github-privacy-statement?json=breadcrumbs'
)
const expected = [
{
documentType: 'product',
href: '/en/github',
title: 'GitHub',
},
{
documentType: 'category',
href: '/en/github/site-policy',
title: 'Site policy',
},
{
documentType: 'article',
href: '/en/github/site-policy/github-privacy-statement',
title: 'GitHub Privacy Statement',
},
]
expect(breadcrumbs).toEqual(expected)
})
test('returns an empty array on the landing page', async () => {
const breadcrumbs = await getJSON('/en?json=breadcrumbs')
expect(breadcrumbs).toEqual([])
})
})
})