UNPKG

asia-weex-vue-render4light

Version:

Web renderer for weex project written in Vue DSL.

99 lines (88 loc) 2.97 kB
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ import { getHeadStyleMap } from '../../src/core/style' import '../data/head-css' import headMap from '../data/head-map' function toArray (arr) { return Array.prototype.slice.call(arr) } function getVStyleSheetNodes () { const regVStyleSheets = /((?:,?\s*\.[\w-]+\[data-v-\w+\](?::\w+)?)+)\s*({[^}]+)/ const nodes = toArray(document.styleSheets) .filter(function (styleSheet) { return regVStyleSheets.test(styleSheet.ownerNode.textContent) }).map(function (styleSheet) { return styleSheet.ownerNode }) return nodes } function getStyleSheetNodes () { return toArray(document.styleSheets) .map(function (styleSheet) { return styleSheet.ownerNode }) } describe('style map', () => { let styleSheetNodes before(function () { styleSheetNodes = getStyleSheetNodes() }) it('should get head style map.', () => { /** * before get style map. */ const vStyleSheetNodes = getVStyleSheetNodes() const allNodes = getStyleSheetNodes() const vNodesExisted = vStyleSheetNodes.filter(function (node) { return allNodes.indexOf(node) > -1 }) expect(vNodesExisted).to.have.members(vStyleSheetNodes) /** * get style map. */ window._no_remove_style_sheets = false // clear mark set in other test cases. Array.from(document.styleSheets).forEach(function (styleSheet) { styleSheet.ownerNode.removeAttribute('weex-scanned') }) const styleMap = getHeadStyleMap() window._no_remove_style_sheets = true /** * after get style map. */ for (const key in headMap) { const expected = headMap[key] const result = styleMap[key] expect(expected).be.deep.equal(result) } const nowStyleSheetNodes = getStyleSheetNodes() const vNodesLeft = vStyleSheetNodes.filter(function (node) { return nowStyleSheetNodes.indexOf(node) > -1 }) expect(vNodesLeft).to.have.lengthOf(0) }) after(function () { const nodes = getStyleSheetNodes() styleSheetNodes.forEach(function (node) { if (nodes.indexOf(node) === -1) { document.head.appendChild(node) } }) }) })