* Upgrade Rails to 6.1 * Switch to unreleased bullet * Run rails app:update * Add deprecation notices after reading changelogs * Fix app:update error * Move middleware in the correct place * Temporarily disable ransack which does not support Rails 6.1 * Remove wrongly merged file * Re-run spring binstub * Fix double quotes * Track ransack branch with Rails 6.1 support * Fix deprecation * Switch to Ransack 2.4 which supports Rails 6.1 rc1 * Fix missing default params for the duration substitution * Fix new behavior of relation.pluck with contradictory queries * Fix uploaders specs by tracking rspec-rails main repo * Disable bullet temporarily * Fix remaining fixture_file_upload usages * Add default seconds for video article duration * Trigger Travis CI * Upgrade Rails to 6.1.0.rc2 * Remove file deleted on master * Add Rails 6.1 gem to Gemfile * Trigger Travis CI * Revert "Disable bullet temporarily" This reverts commit cee0c2ce61fb72cbc16d52c94b12ee681e873031. * Fix bullet version * Upgrade to acts-as-taggable 7 and fix conflict * Update Gemfile and rspec-* gems * Fix nokogiri in Gemfile.lock * Switch to rspec-rails main branch * Remove leftover vendored cached items * Fix path for Rails 6.1 * Use latest release of erb_lint * Re-run rails app:update to incorporate new changes * Disable erb_lint's ErbSafety checks * Fix Gemfile.lock and re-add platform specific gems of Nokogiri * Add mini_portile2 as well * Fix latest merge conflict by removing now unused faraday_middleware * Upgrade to Rails 6.1.3.1 * Regenerate Gemfile.lock and vendor/cache * Add x86_64 linux gem * Mark spec as flaky * Revert "Mark spec as flaky" This reverts commit 3caba94b33645f9b59c84ba78ee8df042fc7aee0. Co-authored-by: Mac Siri <krairit.siri@gmail.com>
240 lines
6.8 KiB
JavaScript
Executable file
240 lines
6.8 KiB
JavaScript
Executable file
/* globals require beforeEach jest describe it expect */
|
|
const path = require('path');
|
|
const {
|
|
generateUtilityClassesDocumentation,
|
|
GENERATED_STORIES_FOLDER,
|
|
} = require('../generate-css-utility-classes-docs');
|
|
|
|
function createMockFileWriter() {
|
|
const files = {};
|
|
async function fileWriter(file, content) {
|
|
files[file] = content;
|
|
}
|
|
|
|
return { files, fileWriter };
|
|
}
|
|
|
|
function getStorybookFilePath(cssProperty) {
|
|
return path.join(
|
|
GENERATED_STORIES_FOLDER,
|
|
`${cssProperty}_utilityClasses.stories.jsx`,
|
|
);
|
|
}
|
|
|
|
describe('generateUtilityClassesDocumentation', () => {
|
|
beforeEach(() => {
|
|
// eslint-disable-next-line no-console
|
|
console.log = jest.fn();
|
|
});
|
|
|
|
it('should generate a Storybook story file', () => {
|
|
const expected = ` // This is an auto-generated file. DO NOT EDIT
|
|
import { h } from 'preact';
|
|
import '../../crayons/storybook-utilities/designSystem.scss';
|
|
|
|
export default {
|
|
title: 'Utility-First Classes/color',
|
|
};
|
|
export const _color_some_utility_class = () => <div class="container">
|
|
<p><code>.color-some-utility-class</code> utility class for the following CSS properties:</p>
|
|
<ul>
|
|
<li>
|
|
<a
|
|
href="https://developer.mozilla.org/en-US/docs/Web/CSS/color"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>color</a> set to <code>red</code>
|
|
</li>
|
|
</ul>
|
|
<pre><code>{\`.color-some-utility-class {
|
|
color: red;
|
|
}
|
|
\`}</code></pre>
|
|
</div>
|
|
|
|
_color_some_utility_class.story = { name: 'color-some-utility-class' };
|
|
`;
|
|
const styleSheet = {
|
|
cssRules: [
|
|
{
|
|
style: {
|
|
0: 'color',
|
|
length: 1,
|
|
color: 'red',
|
|
},
|
|
selectorText: '.color-some-utility-class',
|
|
cssText: '.color-some-utility-class{color: red;}',
|
|
},
|
|
],
|
|
};
|
|
|
|
const { files, fileWriter } = createMockFileWriter();
|
|
const filePath = getStorybookFilePath('color');
|
|
|
|
generateUtilityClassesDocumentation(styleSheet, fileWriter);
|
|
|
|
expect(files[filePath]).toEqual(expected);
|
|
});
|
|
|
|
it('should generate a Storybook story file when a utility class has more than one property set', () => {
|
|
const expected = ` // This is an auto-generated file. DO NOT EDIT
|
|
import { h } from 'preact';
|
|
import '../../crayons/storybook-utilities/designSystem.scss';
|
|
|
|
export default {
|
|
title: 'Utility-First Classes/color',
|
|
};
|
|
export const _color_some_utility_class = () => <div class="container">
|
|
<p><code>.color-some-utility-class</code> utility class for the following CSS properties:</p>
|
|
<ul>
|
|
<li>
|
|
<a
|
|
href="https://developer.mozilla.org/en-US/docs/Web/CSS/color"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>color</a> set to <code>red</code>
|
|
</li><li>
|
|
<a
|
|
href="https://developer.mozilla.org/en-US/docs/Web/CSS/opacity"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>opacity</a> set to <code>0.5</code>
|
|
</li>
|
|
</ul>
|
|
<pre><code>{\`.color-some-utility-class {
|
|
color: red;
|
|
opacity: 0.5;
|
|
}
|
|
\`}</code></pre>
|
|
</div>
|
|
|
|
_color_some_utility_class.story = { name: 'color-some-utility-class' };
|
|
`;
|
|
const styleSheet = {
|
|
cssRules: [
|
|
{
|
|
style: {
|
|
0: 'color',
|
|
1: 'opacity',
|
|
length: 2,
|
|
color: 'red',
|
|
opacity: '0.5',
|
|
},
|
|
selectorText: '.color-some-utility-class',
|
|
cssText: '.color-some-utility-class{color: red;opacity: 0.5}',
|
|
},
|
|
],
|
|
};
|
|
|
|
const { files, fileWriter } = createMockFileWriter();
|
|
const filePath = getStorybookFilePath('color');
|
|
|
|
generateUtilityClassesDocumentation(styleSheet, fileWriter);
|
|
|
|
expect(files[filePath]).toEqual(expected);
|
|
});
|
|
|
|
it('should generate a Storybook story file with CSS utility classes', () => {
|
|
const expected = ` // This is an auto-generated file. DO NOT EDIT
|
|
import { h } from 'preact';
|
|
import '../../crayons/storybook-utilities/designSystem.scss';
|
|
|
|
export default {
|
|
title: 'Utility-First Classes/color',
|
|
};
|
|
export const _color_some_utility_class = () => <div class="container">
|
|
<p><code>.color-some-utility-class</code> utility class for the following CSS properties:</p>
|
|
<ul>
|
|
<li>
|
|
<a
|
|
href="https://developer.mozilla.org/en-US/docs/Web/CSS/color"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>color</a> set to <code>red</code>
|
|
</li>
|
|
</ul>
|
|
<pre><code>{\`.color-some-utility-class {
|
|
color: red;
|
|
}
|
|
\`}</code></pre>
|
|
</div>
|
|
|
|
_color_some_utility_class.story = { name: 'color-some-utility-class' };
|
|
`;
|
|
const styleSheet = {
|
|
cssRules: [
|
|
{
|
|
style: {
|
|
0: 'color',
|
|
length: 1,
|
|
color: 'red',
|
|
},
|
|
selectorText: '.color-some-utility-class',
|
|
cssText: '.color-some-utility-class{color: red;}',
|
|
},
|
|
],
|
|
};
|
|
|
|
const { files, fileWriter } = createMockFileWriter();
|
|
const filePath = getStorybookFilePath('color');
|
|
|
|
generateUtilityClassesDocumentation(styleSheet, fileWriter);
|
|
|
|
expect(files[filePath]).toEqual(expected);
|
|
});
|
|
|
|
it('should generate a Storybook story file for only non-@media CSS rules', () => {
|
|
const expected = ` // This is an auto-generated file. DO NOT EDIT
|
|
import { h } from 'preact';
|
|
import '../../crayons/storybook-utilities/designSystem.scss';
|
|
|
|
export default {
|
|
title: 'Utility-First Classes/color',
|
|
};
|
|
export const _color_some_utility_class = () => <div class="container">
|
|
<p><code>.color-some-utility-class</code> utility class for the following CSS properties:</p>
|
|
<ul>
|
|
<li>
|
|
<a
|
|
href="https://developer.mozilla.org/en-US/docs/Web/CSS/color"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>color</a> set to <code>red</code>
|
|
</li>
|
|
</ul>
|
|
<pre><code>{\`.color-some-utility-class {
|
|
color: red;
|
|
}
|
|
\`}</code></pre>
|
|
</div>
|
|
|
|
_color_some_utility_class.story = { name: 'color-some-utility-class' };
|
|
`;
|
|
const styleSheet = {
|
|
cssRules: [
|
|
{
|
|
style: {
|
|
0: 'color',
|
|
length: 1,
|
|
color: 'red',
|
|
},
|
|
selectorText: '.color-some-utility-class',
|
|
cssText: '.color-some-utility-class{color: red;}',
|
|
},
|
|
{
|
|
style: {
|
|
0: 'width',
|
|
length: 1,
|
|
},
|
|
media: 'some-media-rule',
|
|
},
|
|
],
|
|
};
|
|
|
|
const { files, fileWriter } = createMockFileWriter();
|
|
|
|
generateUtilityClassesDocumentation(styleSheet, fileWriter);
|
|
const filePath = getStorybookFilePath('color');
|
|
expect(files[filePath]).toEqual(expected);
|
|
});
|
|
});
|