1
0
mirror of synced 2025-12-21 19:06:49 -05:00
Files
docs/tests/rendering/breadcrumbs.js
Sarah Schneider aa5a62d49d Remove versions feature flag code (#15793)
* remove FEATURE_NEW_VERSIONS from feature-flags.json

* remove process.env.FEATURE_NEW_VERSIONS from include files

* remove process.env.FEATURE_NEW_VERSIONS from lib files

* remove process.env.FEATURE_NEW_VERSIONS from middleware files

* remove process.env.FEATURE_NEW_VERSIONS from script files

* remove process.env.FEATURE_NEW_VERSIONS from test files

* update test fixtures to use new versions as canonical fixtures
2020-09-29 13:36:07 -04:00

157 lines
6.2 KiB
JavaScript

const { getDOM, getJSON } = require('../helpers')
const nonEnterpriseDefaultVersion = require('../../lib/non-enterprise-default-version')
describe('breadcrumbs', () => {
jest.setTimeout(300 * 1000)
describe('rendering', () => {
test('top-level product pages have breadcrumbs', async () => {
const $ = await getDOM('/github')
expect($('.breadcrumbs')).toHaveLength(1)
})
test('article pages have breadcrumbs with product, category, maptopic, and article', async () => {
const $ = await getDOM('/github/getting-started-with-github/supported-browsers')
const $breadcrumbs = $('.breadcrumbs a')
expect($breadcrumbs).toHaveLength(4)
expect($breadcrumbs.eq(0).attr('title')).toBe('product: GitHub.com')
expect($breadcrumbs.eq(1).attr('title')).toBe('category: Getting started')
expect($breadcrumbs.eq(2).attr('title')).toBe('maptopic: Using GitHub')
expect($breadcrumbs.eq(3).attr('title')).toBe('article: Supported browsers')
})
test('maptopic pages include their own grayed-out breadcrumb', async () => {
const $ = await getDOM('/github/getting-started-with-github/using-github')
const $breadcrumbs = $('.breadcrumbs a')
expect($breadcrumbs).toHaveLength(3)
expect($breadcrumbs.eq(0).attr('title')).toBe('product: GitHub.com')
expect($breadcrumbs.eq(1).attr('title')).toBe('category: Getting started')
expect($breadcrumbs.eq(2).attr('title')).toBe('maptopic: Using GitHub')
expect($breadcrumbs.eq(2).hasClass('text-gray-light')).toBe(true)
})
test('works for enterprise user pages', async () => {
const $ = await getDOM('/en/enterprise/user/github/getting-started-with-github/supported-browsers')
const $breadcrumbs = $('.breadcrumbs a')
expect($breadcrumbs).toHaveLength(4)
// The product is still GitHub.com on an Enterprise Server version
expect($breadcrumbs.eq(0).attr('title')).toBe('product: GitHub.com')
})
test('parses Liquid variables inside titles', async () => {
const $ = await getDOM('/en/enterprise/admin/enterprise-support')
const $breadcrumbs = $('.breadcrumbs a')
expect($breadcrumbs).toHaveLength(2)
expect($breadcrumbs.eq(1).attr('title')).toBe('category: Working with GitHub Support')
})
test('English breadcrumbs link to English pages', async () => {
const $ = await getDOM('/en/github/getting-started-with-github')
const $breadcrumbs = $('.breadcrumbs a')
expect($breadcrumbs.eq(0).attr('href')).toBe(`/en/${nonEnterpriseDefaultVersion}/github`)
})
test('localized breadcrumbs link to localize pages', async () => {
const $ = await getDOM('/ja/github/getting-started-with-github')
const $breadcrumbs = $('.breadcrumbs a')
expect($breadcrumbs.eq(0).attr('href')).toBe(`/ja/${nonEnterpriseDefaultVersion}/github`)
})
})
describe('context.breadcrumbs object', () => {
test('works on product index pages', async () => {
const breadcrumbs = await getJSON('/en/github?json=breadcrumbs')
const expected = {
product: {
href: `/${nonEnterpriseDefaultVersion}/github`,
title: 'GitHub.com'
}
}
expect(breadcrumbs).toEqual(expected)
})
test('works on category index pages', async () => {
const breadcrumbs = await getJSON('/en/github/authenticating-to-github?json=breadcrumbs')
const expected = {
product: {
href: `/${nonEnterpriseDefaultVersion}/github`,
title: 'GitHub.com'
},
category: {
href: `/${nonEnterpriseDefaultVersion}/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 = {
product: {
href: `/${nonEnterpriseDefaultVersion}/github`,
title: 'GitHub.com'
},
category: {
href: `/${nonEnterpriseDefaultVersion}/github/authenticating-to-github`,
title: 'Authentication'
},
maptopic: {
href: `/${nonEnterpriseDefaultVersion}/github/authenticating-to-github/keeping-your-account-and-data-secure`,
title: 'Keeping your account and data secure'
}
}
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 = {
product: {
href: `/${nonEnterpriseDefaultVersion}/github`,
title: 'GitHub.com'
},
category: {
href: `/${nonEnterpriseDefaultVersion}/github/authenticating-to-github`,
title: 'Authentication'
},
maptopic: {
href: `/${nonEnterpriseDefaultVersion}/github/authenticating-to-github/keeping-your-account-and-data-secure`,
title: 'Keeping your account and data secure'
},
article: {
href: `/${nonEnterpriseDefaultVersion}/github/authenticating-to-github/creating-a-strong-password`,
title: 'Creating 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 = {
product: {
href: `/${nonEnterpriseDefaultVersion}/github`,
title: 'GitHub.com'
},
category: {
href: `/${nonEnterpriseDefaultVersion}/github/site-policy`,
title: 'Site policy'
},
article: {
href: `/${nonEnterpriseDefaultVersion}/github/site-policy/github-privacy-statement`,
title: 'GitHub Privacy Statement'
}
}
expect(breadcrumbs).toEqual(expected)
})
test('returns an empty object on the landing page', async () => {
const breadcrumbs = await getJSON('/en?json=breadcrumbs')
expect(breadcrumbs).toEqual({})
})
})
})