项目作者: aquariuslt

项目描述 :
Spring + JAWR + Ext3 Java Web Sample Project
高级语言: JavaScript
项目地址: git://github.com/aquariuslt/karma-jawr-sample.git
创建时间: 2017-09-20T12:17:18Z
项目社区:https://github.com/aquariuslt/karma-jawr-sample

开源协议:

下载


Karma Jawr Sample

Build Status
Coverage Status

The focus point is: Providing a way to show: how to write graceful javascript unittest in server render template engine.

Background

  • Spring Framework
  • Spring MVC
  • JAWR
  • JAWR Locale Message Generator
  • Ext3

Features

  • Karma + Mocha + Chai
  • Sinon
  • Integration with CI System

Problems

  • How to load necessary JS files into runtime easily? Because Java side uses JAWR as assets bundling tool to compact multiple JS files into one. Then Front-end uses <script> tags to include those bundles. This make it difficult to get the correct dependencies JS files.
  • How to mock the Locale Message Generator in global? Currently the JAWR Locale Message Generator is assigned as a property of the global object(We use it like locale.namesapce.field.a()). We need to construct this object when running test cases otherwise a lot of code will throw exception.
  • No best practice for Ext3 can be found from Internet

Plan: outline

Usage

Install Dependencies

  1. mvn install && npm install

Build War & Deploy

You can deploy you war file in target/karma-jawr.war to your webapp container.(Tomcat, JBoss, Weblogic…)

Install Frontend UnitTest Dependencies

  1. npm install

For China User, since puppeteer v0.13.0 support CHROMIUM binary download mirror.

Please export environment variables PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors before npm install

For Windows Run

  1. SET PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors

Since 2018-03-13 cnpmjs.org network issue, found another mirror on taobao.org
So you can also use this https://npm.taobao.org/mirrors

For Unix Run

  1. export PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors

Frontend UnitTest

  1. npm test