/** * ownCloud * * @author Vincent Petry * @copyright 2014 Vincent Petry * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * License as published by the Free Software Foundation; either * version 3 of the License, or any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. * * You should have received a copy of the GNU Affero General Public * License along with this library. If not, see . * */ /** * This node module is run by the karma executable to specify its configuration. * * The list of files from all needed JavaScript files including the ones from the * apps to test, and the test specs will be passed as configuration object. * * Note that it is possible to test a single app by setting the KARMA_TESTSUITE * environment variable to the apps name, for example "core" or "files_encryption". * Multiple apps can be specified by separating them with space. * * Setting the environment variable NOCOVERAGE to 1 will disable the coverage * preprocessor, which is needed to be able to debug tests properly in a browser. */ if (!process.env.CHROMIUM_BIN) { process.env.CHROMIUM_BIN = require('puppeteer').executablePath() } /* jshint node: true */ module.exports = function(config) { function findApps() { /* var fs = require('fs'); var apps = fs.readdirSync('apps'); return apps; */ // other apps tests don't run yet... needs further research / clean up return [ 'files', 'files_versions', { name: 'comments', srcFiles: [ 'dist/comments-comments.js' ], testFiles: ['apps/comments/tests/js/**/*.js'] }, { name: 'files_sharing', srcFiles: [ // only test these files, others are not ready and mess // up with the global namespace/classes/state 'dist/files_sharing-additionalScripts.js', 'dist/files_sharing-files_sharing_tab.js', 'dist/files_sharing-files_sharing.js', 'dist/files_sharing-main.js', 'apps/files_sharing/js/files_drop.js', 'apps/files_sharing/js/public.js', 'apps/files_sharing/js/sharedfilelist.js', 'apps/files_sharing/js/templates.js', ], testFiles: ['apps/files_sharing/tests/js/*.js'] }, { name: 'files_external', srcFiles: [ // only test these files, others are not ready and mess // up with the global namespace/classes/state 'apps/files_external/js/app.js', 'apps/files_external/js/templates.js', 'apps/files_external/js/mountsfilelist.js', 'apps/files_external/js/settings.js', 'apps/files_external/js/statusmanager.js' ], testFiles: ['apps/files_external/tests/js/*.js'] }, 'systemtags', 'files_trashbin', ]; } // respect NOCOVERAGE env variable // it is useful to disable coverage for debugging // because the coverage preprocessor will wrap the JS files somehow var enableCoverage = !parseInt(process.env.NOCOVERAGE, 10); console.log( 'Coverage preprocessor: ', enableCoverage ? 'enabled' : 'disabled' ); // default apps to test when none is specified (TODO: read from filesystem ?) let appsToTest = [] if (process.env.KARMA_TESTSUITE) { appsToTest = process.env.KARMA_TESTSUITE.split(' '); } else { appsToTest = ['core'].concat(findApps()); } console.log('Apps to test: ', appsToTest); // read core files from core.json, // these are required by all apps so always need to be loaded // note that the loading order is important that's why they // are specified in a separate file var corePath = 'dist/'; var coreModule = require('../core/js/core.json'); var testCore = false; var files = []; var index; var preprocessors = {}; // find out what apps to test from appsToTest index = appsToTest.indexOf('core'); if (index > -1) { appsToTest.splice(index, 1); testCore = true; } var srcFile, i; // add core library files for (i = 0; i < coreModule.libraries.length; i++) { srcFile = corePath + coreModule.libraries[i]; files.push(srcFile); } files.push('core/js/tests/html-domparser.js'); files.push('dist/core-main.js'); files.push('dist/core-files_fileinfo.js'); files.push('dist/core-files_client.js'); files.push('dist/core-systemtags.js'); // core mocks files.push('core/js/tests/specHelper.js'); // add core modules files for (i = 0; i < coreModule.modules.length; i++) { srcFile = corePath + coreModule.modules[i]; files.push(srcFile); if (enableCoverage) { preprocessors[srcFile] = 'coverage'; } } // TODO: settings pages // need to test the core app as well ? if (testCore) { // core tests files.push('core/js/tests/specs/**/*.js'); } function addApp(app) { // if only a string was specified, expand to structure if (typeof app === 'string') { app = { srcFiles: ['dist/' + app + '-*.js', 'apps/' + app + '/js/**/*.js'], testFiles: 'apps/' + app + '/tests/js/**/*.js' }; } // add source files/patterns files = files.concat(app.srcFiles || []); // add test files/patterns files = files.concat(app.testFiles || []); if (enableCoverage) { // add coverage entry for each file/pattern for (var i = 0; i < app.srcFiles.length; i++) { preprocessors[app.srcFiles[i]] = 'coverage'; } } } // add source files for apps to test for (i = 0; i < appsToTest.length; i++) { addApp(appsToTest[i]); } // serve images to avoid warnings files.push({ pattern: 'core/img/**/*', watched: false, included: false, served: true }); // include core CSS files.push({ pattern: 'core/css/*.css', watched: true, included: true, served: true }); files.push({ pattern: 'tests/css/*.css', watched: true, included: true, served: true }); // Allow fonts files.push({ pattern: 'core/fonts/*', watched: false, included: false, served: true }); console.log(files) config.set({ // base path, that will be used to resolve files and exclude basePath: '..', // frameworks to use frameworks: ['jasmine', 'jasmine-sinon', 'viewport'], // list of files / patterns to load in the browser files: files, // list of files to exclude exclude: [], proxies: { // prevent warnings for images '/base/tests/img/': 'http://localhost:9876/base/core/img/', '/base/tests/css/': 'http://localhost:9876/base/core/css/', '/base/core/css/images/': 'http://localhost:9876/base/core/css/images/', '/actions/': 'http://localhost:9876/base/core/img/actions/', '/base/core/fonts/': 'http://localhost:9876/base/core/fonts/', '/svg/': '../core/img/' }, // test results reporter to use // possible values: 'dots', 'progress', 'junit', 'growl', 'coverage' reporters: ['spec'], specReporter: { maxLogLines: 5, suppressErrorSummary: false, suppressFailed: false, suppressPassed: true, suppressSkipped: true, showSpecTiming: false, }, junitReporter: { outputFile: 'tests/autotest-results-js.xml' }, // web server port port: 9876, preprocessors: preprocessors, coverageReporter: { dir: 'tests/karma-coverage', reporters: [ { type: 'html' }, { type: 'cobertura' }, { type: 'lcovonly' } ] }, // enable / disable colors in the output (reporters and logs) colors: true, // level of logging // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_INFO, // enable / disable watching file and executing tests whenever any file changes autoWatch: true, // Start these browsers, currently available: // - Chrome // - ChromeCanary // - Firefox // - Opera (has to be installed with `npm install karma-opera-launcher`) // - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`) // - PhantomJS // - IE (only Windows; has to be installed with `npm install karma-ie-launcher`) // use PhantomJS_debug for extra local debug browsers: ['ChromiumHeadless'], // you can define custom flags customLaunchers: { PhantomJS_debug: { base: 'PhantomJS', debug: true } }, // If browser does not capture in given timeout [ms], kill it captureTimeout: 60000, // Continuous Integration mode // if true, it capture browsers, run tests and exit singleRun: false }); }; #n11'>11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
<?xml version="1.0" encoding="UTF-8"?>
<!--
  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.
-->
<!-- $Id$ -->
<testcase>
  <info>
    <p>
      This test checks line-stacking-strategy font-height against inlines of different sizes.
    </p>
  </info>
  <fo>
    <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:svg="http://www.w3.org/2000/svg">
      <fo:layout-master-set>
        <fo:simple-page-master master-name="normal" page-width="5in" page-height="5in">
          <fo:region-body/>
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="normal" white-space-collapse="true">
        <fo:flow flow-name="xsl-region-body">
          <fo:block line-stacking-strategy="font-height" background-color="silver" margin="5pt 0pt 5pt 0pt" font-size="14pt">
            Before
            <fo:inline font-size="20pt" 
                background-color="yellow">bigger
            </fo:inline>
            After
          </fo:block>
          <fo:block line-stacking-strategy="font-height" background-color="silver" margin="5pt 0pt 5pt 0pt" font-size="14pt">
            Before
            <fo:inline font-size="20pt"
                border="solid 2pt red"
                padding="3pt"
                background-color="yellow">bigger with b &amp; p
            </fo:inline>
            After
          </fo:block>
          <fo:block line-stacking-strategy="font-height" background-color="silver" margin="5pt 0pt 5pt 0pt" font-size="14pt">
            Before
            <fo:inline font-size="10pt" 
                baseline-shift="sub" 
                background-color="yellow">sub
              <fo:inline font-size="8pt" 
                  baseline-shift="sub" 
                  background-color="red">sub
              </fo:inline>sub
            </fo:inline>
            After
          </fo:block>
          <fo:block line-stacking-strategy="font-height" background-color="silver" margin="5pt 0pt 5pt 0pt" font-size="14pt">
            Before
            <fo:inline font-size="10pt" 
                baseline-shift="super" 
                background-color="yellow">super
              <fo:inline font-size="8pt" 
                  baseline-shift="super" 
                  background-color="red">super
              </fo:inline>super
            </fo:inline>
            After
          </fo:block>
          <fo:block line-stacking-strategy="font-height" background-color="silver" margin="5pt 0pt 5pt 0pt" font-size="14pt">
            Before
            <fo:inline font-size="18pt" 
                baseline-shift="super" 
                background-color="yellow">super
              <fo:inline font-size="24pt" 
                  baseline-shift="sub" 
                  background-color="red">sub
                <fo:inline font-size="30pt" 
                    baseline-shift="super" 
                    background-color="green">super
                </fo:inline>sub
              </fo:inline>super
            </fo:inline>
            After
          </fo:block>
          <fo:block line-stacking-strategy="font-height" background-color="silver" margin="5pt 0pt 5pt 0pt" font-size="14pt">
            Before
            <fo:inline font-size="18pt" 
                baseline-shift="sub" 
                background-color="yellow">sub
              <fo:inline font-size="24pt" 
                  baseline-shift="super" 
                  background-color="red">super
                <fo:inline font-size="36pt" 
                    baseline-shift="sub" 
                    background-color="green">sub
                </fo:inline>super
              </fo:inline>sub
            </fo:inline>
            After
          </fo:block>
        </fo:flow>
      </fo:page-sequence>
    </fo:root>
  </fo>
  <checks>
    <eval expected="12950" xpath="//flow/block[1]/lineArea[1]/@bpd"/>
    <eval expected="0" xpath="//flow/block[1]/lineArea[1]/text[1]/@offset"/>
    <eval expected="-4308" xpath="//flow/block[1]/lineArea[1]/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[1]/lineArea[1]/inlineparent/text[1]/@offset"/>
    <eval expected="0" xpath="//flow/block[1]/lineArea[1]/text[2]/@offset"/>
    
    <eval expected="12950" xpath="//flow/block[2]/lineArea[1]/@bpd"/>
    <eval expected="0" xpath="//flow/block[2]/lineArea[1]/text[1]/@offset"/>
    <eval expected="-4308" xpath="//flow/block[2]/lineArea[1]/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[2]/lineArea[1]/inlineparent/text[1]/@offset"/>
    <eval expected="0" xpath="//flow/block[2]/lineArea[1]/text[2]/@offset"/>
    
    <eval expected="12950" xpath="//flow/block[3]/lineArea[1]/@bpd"/>
    <eval expected="0" xpath="//flow/block[3]/lineArea[1]/text[1]/@offset"/>
    <eval expected="5487" xpath="//flow/block[3]/lineArea[1]/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[3]/lineArea[1]/inlineparent/text[1]/@offset"/>
    <eval expected="3528" xpath="//flow/block[3]/lineArea[1]/inlineparent/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[3]/lineArea[1]/inlineparent/inlineparent/text/@offset"/>
    <eval expected="0" xpath="//flow/block[3]/lineArea[1]/inlineparent/text[2]/@offset"/>
    <eval expected="0" xpath="//flow/block[3]/lineArea[1]/text[2]/@offset"/>
    
    <eval expected="12950" xpath="//flow/block[4]/lineArea[1]/@bpd"/>
    <eval expected="0" xpath="//flow/block[4]/lineArea[1]/text[1]/@offset"/>
    <eval expected="-4450" xpath="//flow/block[4]/lineArea[1]/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[4]/lineArea[1]/inlineparent/text[1]/@offset"/>
    <eval expected="-3794" xpath="//flow/block[4]/lineArea[1]/inlineparent/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[4]/lineArea[1]/inlineparent/inlineparent/text/@offset"/>
    <eval expected="0" xpath="//flow/block[4]/lineArea[1]/inlineparent/text[2]/@offset"/>
    <eval expected="0" xpath="//flow/block[4]/lineArea[1]/text[2]/@offset"/>
    
    <eval expected="12950" xpath="//flow/block[5]/lineArea[1]/@bpd"/>
    <eval expected="0" xpath="//flow/block[5]/lineArea[1]/text[1]/@offset"/>
    <eval expected="-10194" xpath="//flow/block[5]/lineArea[1]/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[5]/lineArea[1]/inlineparent/text[1]/@offset"/>
    <eval expected="1968" xpath="//flow/block[5]/lineArea[1]/inlineparent/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[5]/lineArea[1]/inlineparent/inlineparent/text[1]/@offset"/>
    <eval expected="-16860" xpath="//flow/block[5]/lineArea[1]/inlineparent/inlineparent/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[5]/lineArea[1]/inlineparent/inlineparent/inlineparent/text/@offset"/>
    <eval expected="0" xpath="//flow/block[5]/lineArea[1]/inlineparent/inlineparent/text[2]/@offset"/>
    <eval expected="0" xpath="//flow/block[5]/lineArea[1]/inlineparent/text[2]/@offset"/>
    <eval expected="0" xpath="//flow/block[5]/lineArea[1]/text[2]/@offset"/>
    
    <eval expected="12950" xpath="//flow/block[6]/lineArea[1]/@bpd"/>
    <eval expected="0" xpath="//flow/block[6]/lineArea[1]/text[1]/@offset"/>
    <eval expected="1835" xpath="//flow/block[6]/lineArea[1]/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[6]/lineArea[1]/inlineparent/text[1]/@offset"/>
    <eval expected="-13722" xpath="//flow/block[6]/lineArea[1]/inlineparent/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[6]/lineArea[1]/inlineparent/inlineparent/text[1]/@offset"/>
    <eval expected="798" xpath="//flow/block[6]/lineArea[1]/inlineparent/inlineparent/inlineparent/@offset"/>
    <eval expected="0" xpath="//flow/block[6]/lineArea[1]/inlineparent/inlineparent/inlineparent/text/@offset"/>
    <eval expected="0" xpath="//flow/block[6]/lineArea[1]/inlineparent/inlineparent/text[1]/@offset"/>
    <eval expected="0" xpath="//flow/block[6]/lineArea[1]/inlineparent/text[2]/@offset"/>
    <eval expected="0" xpath="//flow/block[6]/lineArea[1]/text[2]/@offset"/>
  </checks>
</testcase>