Skip to content

feat: add logPlaygroundUrl in screen #781

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@
"@babel/runtime": "^7.10.3",
"@types/aria-query": "^4.2.0",
"aria-query": "^4.2.2",
"chalk": "^4.1.0",
"dom-accessibility-api": "^0.5.1",
"pretty-format": "^26.4.2",
"chalk": "^4.1.0"
"lz-string": "^1.4.4",
"pretty-format": "^26.4.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.10.1",
Expand Down Expand Up @@ -78,4 +79,4 @@
"url": "https://github.com/testing-library/dom-testing-library/issues"
},
"homepage": "https://github.com/testing-library/dom-testing-library#readme"
}
}
45 changes: 44 additions & 1 deletion src/__tests__/screen.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {screen} from '..'
import {renderIntoDocument} from './helpers/test-utils'
import {render, renderIntoDocument} from './helpers/test-utils'

// Since screen.debug internally calls getUserCodeFrame, we mock it so it doesn't affect these tests
jest.mock('../get-user-code-frame', () => ({
Expand All @@ -21,6 +21,49 @@ test('exposes queries that are attached to document.body', async () => {
expect(screen.queryByText(/hello world/i)).not.toBeNull()
})

test('logs Playground URL that are attached to document.body', () => {
renderIntoDocument(`<div>hello world</div>`)
screen.logTestingPlaygroundURL()
expect(console.log).toHaveBeenCalledTimes(1)
expect(console.log.mock.calls[0][0]).toMatchInlineSnapshot(`
"Open this URL in your browser

https://testing-playground.com/#markup=DwEwlgbgfAFgpgGwQewAQHdkCcEmAenGiA"
`)
})

test('logs messsage when element is empty', () => {
screen.logTestingPlaygroundURL(document.createElement('div'))
expect(console.log).toHaveBeenCalledTimes(1)
expect(console.log.mock.calls[0][0]).toMatchInlineSnapshot(
`"The provided element doesn't have any children."`,
)
})

test('logs messsage when element is not a valid HTML', () => {
screen.logTestingPlaygroundURL(null)
expect(console.log).toHaveBeenCalledTimes(1)
expect(console.log.mock.calls[0][0]).toMatchInlineSnapshot(
`"The element you're providing isn't a valid DOM element."`,
)
console.log.mockClear()
screen.logTestingPlaygroundURL({})
expect(console.log).toHaveBeenCalledTimes(1)
expect(console.log.mock.calls[0][0]).toMatchInlineSnapshot(
`"The element you're providing isn't a valid DOM element."`,
)
})

test('logs Playground URL that are passed as element', () => {
screen.logTestingPlaygroundURL(render(`<h1>Sign <em>up</em></h1>`).container)
expect(console.log).toHaveBeenCalledTimes(1)
expect(console.log.mock.calls[0][0]).toMatchInlineSnapshot(`
"Open this URL in your browser

https://testing-playground.com/#markup=DwCwjAfAyglg5gOwATAKYFsIFcAOwD0GEB4EQA"
`)
})

test('exposes debug method', () => {
renderIntoDocument(
`<button>test</button><span>multi-test</span><div>multi-test</div>`,
Expand Down
52 changes: 40 additions & 12 deletions src/screen.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,51 @@
import {compressToEncodedURIComponent} from 'lz-string'
import * as queries from './queries'
import {getQueriesForElement} from './get-queries-for-element'
import {logDOM} from './pretty-dom'
import {getDocument} from './helpers'

function unindent(string) {
// remove white spaces first, to save a few bytes.
// testing-playground will reformat on load any ways.
return string.replace(/[ \t]*[\n][ \t]*/g, '\n')
}

function encode(value) {
return compressToEncodedURIComponent(unindent(value))
}

function getPlaygroundUrl(markup) {
return `https://testing-playground.com/#markup=${encode(markup)}`
}

const debug = (element, maxLength, options) =>
Array.isArray(element)
? element.forEach(el => logDOM(el, maxLength, options))
: logDOM(element, maxLength, options)

const logTestingPlaygroundURL = (element = getDocument().body) => {
if (!element || !('innerHTML' in element)) {
console.log(`The element you're providing isn't a valid DOM element.`)
return
}
if (!element.innerHTML) {
console.log(`The provided element doesn't have any children.`)
return
}
console.log(
`Open this URL in your browser\n\n${getPlaygroundUrl(element.innerHTML)}`,
)
}

const initialValue = {debug, logTestingPlaygroundURL}
export const screen =
typeof document !== 'undefined' && document.body
? getQueriesForElement(document.body, queries, {debug})
: Object.keys(queries).reduce(
(helpers, key) => {
helpers[key] = () => {
throw new TypeError(
'For queries bound to document.body a global document has to be available... Learn more: https://testing-library.com/s/screen-global-error',
)
}
return helpers
},
{debug},
)
? getQueriesForElement(document.body, queries, initialValue)
: Object.keys(queries).reduce((helpers, key) => {
helpers[key] = () => {
throw new TypeError(
'For queries bound to document.body a global document has to be available... Learn more: https://testing-library.com/s/screen-global-error',
)
}
return helpers
}, initialValue)
33 changes: 19 additions & 14 deletions types/screen.d.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
import { BoundFunctions, Queries } from './get-queries-for-element';
import * as queries from './queries';
import { OptionsReceived } from 'pretty-format';
import {BoundFunctions, Queries} from './get-queries-for-element'
import * as queries from './queries'
import {OptionsReceived} from 'pretty-format'

export type Screen<Q extends Queries = typeof queries> = BoundFunctions<Q> & {
/**
* Convenience function for `pretty-dom` which also allows an array
* of elements
*/
debug: (
element?: Element | HTMLDocument | Array<Element | HTMLDocument>,
maxLength?: number,
options?: OptionsReceived,
) => void;
};
/**
* Convenience function for `pretty-dom` which also allows an array
* of elements
*/
debug: (
element?: Element | HTMLDocument | Array<Element | HTMLDocument>,
maxLength?: number,
options?: OptionsReceived,
) => void
/**
* Convenience function for `Testing Playground` which logs URL that
* can be opened in a browser
*/
logTestingPlaygroundURL: (element?: Element | HTMLDocument) => void
}

export const screen: Screen;
export const screen: Screen