karma.config.js 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. /**
  2. * ownCloud
  3. *
  4. * @author Vincent Petry
  5. * @copyright 2014 Vincent Petry <pvince81@owncloud.com>
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  9. * License as published by the Free Software Foundation; either
  10. * version 3 of the License, or any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public
  18. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. /**
  22. * This node module is run by the karma executable to specify its configuration.
  23. *
  24. * The list of files from all needed JavaScript files including the ones from the
  25. * apps to test, and the test specs will be passed as configuration object.
  26. *
  27. * Note that it is possible to test a single app by setting the KARMA_TESTSUITE
  28. * environment variable to the apps name, for example "core" or "files_encryption".
  29. * Multiple apps can be specified by separating them with space.
  30. *
  31. * Setting the environment variable NOCOVERAGE to 1 will disable the coverage
  32. * preprocessor, which is needed to be able to debug tests properly in a browser.
  33. */
  34. /* jshint node: true */
  35. module.exports = function(config) {
  36. function findApps() {
  37. /*
  38. var fs = require('fs');
  39. var apps = fs.readdirSync('apps');
  40. return apps;
  41. */
  42. // other apps tests don't run yet... needs further research / clean up
  43. return [
  44. 'files',
  45. 'files_trashbin',
  46. {
  47. name: 'files_sharing',
  48. srcFiles: [
  49. // only test these files, others are not ready and mess
  50. // up with the global namespace/classes/state
  51. 'apps/files_sharing/js/app.js',
  52. 'apps/files_sharing/js/sharedfilelist.js',
  53. 'apps/files_sharing/js/share.js',
  54. 'apps/files_sharing/js/sharebreadcrumbview.js',
  55. 'apps/files_sharing/js/public.js',
  56. 'apps/files_sharing/js/sharetabview.js',
  57. 'apps/files_sharing/js/files_drop.js'
  58. ],
  59. testFiles: ['apps/files_sharing/tests/js/*.js']
  60. },
  61. {
  62. name: 'files_external',
  63. srcFiles: [
  64. // only test these files, others are not ready and mess
  65. // up with the global namespace/classes/state
  66. 'apps/files_external/js/app.js',
  67. 'apps/files_external/js/mountsfilelist.js',
  68. 'apps/files_external/js/settings.js',
  69. 'apps/files_external/js/statusmanager.js'
  70. ],
  71. testFiles: ['apps/files_external/tests/js/*.js']
  72. },
  73. {
  74. name: 'files_versions',
  75. srcFiles: [
  76. // need to enforce loading order...
  77. 'apps/files_versions/js/versionmodel.js',
  78. 'apps/files_versions/js/versioncollection.js',
  79. 'apps/files_versions/js/versionstabview.js'
  80. ],
  81. testFiles: ['apps/files_versions/tests/js/**/*.js']
  82. },
  83. {
  84. name: 'comments',
  85. srcFiles: [
  86. // need to enforce loading order...
  87. 'apps/comments/js/app.js',
  88. 'apps/comments/js/vendor/Caret.js/dist/jquery.caret.min.js',
  89. 'apps/comments/js/vendor/At.js/dist/js/jquery.atwho.min.js',
  90. 'apps/comments/js/commentmodel.js',
  91. 'apps/comments/js/commentcollection.js',
  92. 'apps/comments/js/commentsummarymodel.js',
  93. 'apps/comments/js/commentsmodifymenu.js',
  94. 'apps/comments/js/commentstabview.js',
  95. 'apps/comments/js/filesplugin.js'
  96. ],
  97. testFiles: ['apps/comments/tests/js/**/*.js']
  98. },
  99. {
  100. name: 'systemtags',
  101. srcFiles: [
  102. // need to enforce loading order...
  103. 'apps/systemtags/js/app.js',
  104. 'apps/systemtags/js/systemtagsinfoview.js',
  105. 'apps/systemtags/js/systemtagsinfoviewtoggleview.js',
  106. 'apps/systemtags/js/systemtagsfilelist.js',
  107. 'apps/systemtags/js/filesplugin.js'
  108. ],
  109. testFiles: ['apps/systemtags/tests/js/**/*.js']
  110. },
  111. {
  112. name: 'settings',
  113. srcFiles: [
  114. 'settings/js/apps.js',
  115. 'core/vendor/marked/marked.min.js'
  116. ]
  117. }
  118. ];
  119. }
  120. // respect NOCOVERAGE env variable
  121. // it is useful to disable coverage for debugging
  122. // because the coverage preprocessor will wrap the JS files somehow
  123. var enableCoverage = !parseInt(process.env.NOCOVERAGE, 10);
  124. console.log(
  125. 'Coverage preprocessor: ',
  126. enableCoverage ? 'enabled' : 'disabled'
  127. );
  128. // default apps to test when none is specified (TODO: read from filesystem ?)
  129. var appsToTest = process.env.KARMA_TESTSUITE;
  130. if (appsToTest) {
  131. appsToTest = appsToTest.split(' ');
  132. } else {
  133. appsToTest = ['core'].concat(findApps());
  134. }
  135. console.log('Apps to test: ', appsToTest);
  136. // read core files from core.json,
  137. // these are required by all apps so always need to be loaded
  138. // note that the loading order is important that's why they
  139. // are specified in a separate file
  140. var corePath = 'core/js/';
  141. var vendorPath = 'core/vendor/';
  142. var coreModule = require('../' + corePath + 'core.json');
  143. var testCore = false;
  144. var files = [];
  145. var index;
  146. var preprocessors = {};
  147. // find out what apps to test from appsToTest
  148. index = appsToTest.indexOf('core');
  149. if (index > -1) {
  150. appsToTest.splice(index, 1);
  151. testCore = true;
  152. }
  153. // core mocks
  154. files.push(corePath + 'tests/specHelper.js');
  155. var srcFile, i;
  156. // add vendor library files
  157. for (i = 0; i < coreModule.vendor.length; i++) {
  158. srcFile = vendorPath + coreModule.vendor[i];
  159. files.push(srcFile);
  160. }
  161. // add core library files
  162. for (i = 0; i < coreModule.libraries.length; i++) {
  163. srcFile = corePath + coreModule.libraries[i];
  164. files.push(srcFile);
  165. }
  166. // add core modules files
  167. for (i = 0; i < coreModule.modules.length; i++) {
  168. srcFile = corePath + coreModule.modules[i];
  169. files.push(srcFile);
  170. if (enableCoverage) {
  171. preprocessors[srcFile] = 'coverage';
  172. }
  173. }
  174. // TODO: settings pages
  175. // need to test the core app as well ?
  176. if (testCore) {
  177. // core tests
  178. files.push(corePath + 'tests/specs/**/*.js');
  179. }
  180. function addApp(app) {
  181. // if only a string was specified, expand to structure
  182. if (typeof app === 'string') {
  183. app = {
  184. srcFiles: 'apps/' + app + '/js/**/*.js',
  185. testFiles: 'apps/' + app + '/tests/js/**/*.js'
  186. };
  187. }
  188. // add source files/patterns
  189. files = files.concat(app.srcFiles || []);
  190. // add test files/patterns
  191. files = files.concat(app.testFiles || []);
  192. if (enableCoverage) {
  193. // add coverage entry for each file/pattern
  194. for (var i = 0; i < app.srcFiles.length; i++) {
  195. preprocessors[app.srcFiles[i]] = 'coverage';
  196. }
  197. }
  198. }
  199. // add source files for apps to test
  200. for (i = 0; i < appsToTest.length; i++) {
  201. addApp(appsToTest[i]);
  202. }
  203. // serve images to avoid warnings
  204. files.push({
  205. pattern: 'core/img/**/*',
  206. watched: false,
  207. included: false,
  208. served: true
  209. });
  210. files.push({
  211. pattern: 'core/css/images/*',
  212. watched: false,
  213. included: false,
  214. served: true
  215. });
  216. // include core CSS
  217. files.push({
  218. pattern: 'core/css/*.css',
  219. watched: true,
  220. included: true,
  221. served: true
  222. });
  223. files.push({
  224. pattern: 'tests/css/*.css',
  225. watched: true,
  226. included: true,
  227. served: true
  228. });
  229. // Allow fonts
  230. files.push({
  231. pattern: 'core/fonts/*',
  232. watched: false,
  233. included: false,
  234. served: true
  235. });
  236. config.set({
  237. // base path, that will be used to resolve files and exclude
  238. basePath: '..',
  239. // frameworks to use
  240. frameworks: ['jasmine', 'jasmine-sinon', 'viewport'],
  241. // list of files / patterns to load in the browser
  242. files: files,
  243. // list of files to exclude
  244. exclude: [],
  245. proxies: {
  246. // prevent warnings for images
  247. '/base/tests/img/': 'http://localhost:9876/base/core/img/',
  248. '/base/tests/css/': 'http://localhost:9876/base/core/css/',
  249. '/base/core/css/images/': 'http://localhost:9876/base/core/css/images/',
  250. '/actions/': 'http://localhost:9876/base/core/img/actions/',
  251. '/base/core/fonts/': 'http://localhost:9876/base/core/fonts/'
  252. },
  253. // test results reporter to use
  254. // possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
  255. reporters: ['dots', 'junit', 'coverage'],
  256. junitReporter: {
  257. outputFile: 'tests/autotest-results-js.xml'
  258. },
  259. // web server port
  260. port: 9876,
  261. preprocessors: preprocessors,
  262. coverageReporter: {
  263. dir: 'tests/karma-coverage',
  264. reporters: [
  265. { type: 'html' },
  266. { type: 'cobertura' },
  267. { type: 'lcovonly' }
  268. ]
  269. },
  270. // enable / disable colors in the output (reporters and logs)
  271. colors: true,
  272. // level of logging
  273. // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
  274. logLevel: config.LOG_INFO,
  275. // enable / disable watching file and executing tests whenever any file changes
  276. autoWatch: true,
  277. // Start these browsers, currently available:
  278. // - Chrome
  279. // - ChromeCanary
  280. // - Firefox
  281. // - Opera (has to be installed with `npm install karma-opera-launcher`)
  282. // - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
  283. // - PhantomJS
  284. // - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
  285. // use PhantomJS_debug for extra local debug
  286. browsers: ['PhantomJS'],
  287. plugins: [
  288. 'karma-phantomjs-launcher',
  289. 'karma-coverage',
  290. 'karma-jasmine',
  291. 'karma-jasmine-sinon',
  292. 'karma-viewport',
  293. 'karma-junit-reporter'
  294. ],
  295. // you can define custom flags
  296. customLaunchers: {
  297. PhantomJS_debug: {
  298. base: 'PhantomJS',
  299. debug: true
  300. }
  301. },
  302. // If browser does not capture in given timeout [ms], kill it
  303. captureTimeout: 60000,
  304. // Continuous Integration mode
  305. // if true, it capture browsers, run tests and exit
  306. singleRun: false
  307. });
  308. };