forked from mystiq/hydrogen-web
71 lines
3 KiB
JavaScript
71 lines
3 KiB
JavaScript
/*
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
const plugin = require("../css-url-to-variables");
|
|
const run = require("./common").createTestRunner(plugin);
|
|
const postcss = require("postcss");
|
|
|
|
module.exports.tests = function tests() {
|
|
return {
|
|
"url is replaced with variable": async (assert) => {
|
|
const inputCSS = `div {
|
|
background: no-repeat center/80% url("../img/image.svg?primary=main-color--darker-20");
|
|
}
|
|
button {
|
|
background: url("/home/foo/bar/cool.svg?primary=blue&secondary=green");
|
|
}`;
|
|
const outputCSS =
|
|
`div {
|
|
background: no-repeat center/80% var(--icon-url-0);
|
|
}
|
|
button {
|
|
background: var(--icon-url-1);
|
|
}`+
|
|
`
|
|
:root {
|
|
--icon-url-0: url("../img/image.svg?primary=main-color--darker-20");
|
|
--icon-url-1: url("/home/foo/bar/cool.svg?primary=blue&secondary=green");
|
|
}
|
|
`;
|
|
await run(inputCSS, outputCSS, { }, assert);
|
|
},
|
|
"non svg urls without query params are not replaced": async (assert) => {
|
|
const inputCSS = `div {
|
|
background: no-repeat url("./img/foo/bar/image.png");
|
|
}`;
|
|
await run(inputCSS, inputCSS, {}, assert);
|
|
},
|
|
"map is populated with icons": async (assert) => {
|
|
const compiledVariables = new Map();
|
|
compiledVariables.set("/foo/bar", { "derived-variables": ["background-color--darker-20", "accent-color--lighter-15"] });
|
|
const inputCSS = `div {
|
|
background: no-repeat center/80% url("../img/image.svg?primary=main-color--darker-20");
|
|
}
|
|
button {
|
|
background: url("/home/foo/bar/cool.svg?primary=blue&secondary=green");
|
|
}`;
|
|
const expectedObject = {
|
|
"icon-url-0": "../img/image.svg?primary=main-color--darker-20",
|
|
"icon-url-1": "/home/foo/bar/cool.svg?primary=blue&secondary=green",
|
|
};
|
|
await postcss([plugin({compiledVariables})]).process(inputCSS, { from: "/foo/bar/test.css", });
|
|
const sharedVariable = compiledVariables.get("/foo/bar");
|
|
assert.deepEqual(["background-color--darker-20", "accent-color--lighter-15"], sharedVariable["derived-variables"]);
|
|
assert.deepEqual(expectedObject, sharedVariable["icon"]);
|
|
}
|
|
};
|
|
};
|
|
|