Commit ea1720a8 authored by Calvin Metcalf's avatar Calvin Metcalf
Browse files

add mocha tests

parent 3f2e0266
Loading
Loading
Loading
Loading

test/index.html

100755 → 100644
+30 −36
Original line number Diff line number Diff line
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<html>
<head>
  <link href="base.css" type="text/css" rel="stylesheet"/>
  <title>Proj4js Test Page</title>
  <script src="../lib/proj4js-combined.js"></script>
  <script src="../lib/defs/EPSG42304.js"></script>
  <script src="../lib/util/MGRS.js"></script>
  <script src="testdata.js"></script>
  <script src="runtests.js"></script>
  <meta charset="utf-8">
  <title>Mocha Tests</title>
  <link rel="stylesheet" href="lib/mocha.css" />
</head>

<body onload="runTests()">
  <div id="header">
    <h1>Proj4js test page</h1>
  </div>
  <div id="navbar">
    <a href="http://trac.osgeo.org/proj4js">Proj4js Wiki/Trac</a> | 
    <a href="http://wiki.osgeo.org/wiki/MetaCRS">OSGeo MetaCRS</a> |
    <a href="http://spatialreference.org/">spatialreference.org</a> |
    <a href="http://communitymapbuilder.org/">MapBuilder</a> | 
    <a href="http://openlayers.org/">OpenLayers</a> | 
  </div>
  <h2>Core tests</h2>
  <table id="testResult" border="1">
      <tr>
        <th>projection</th>
        <th>class</th>
        <th colspan="3">forward (m)</th>
        <th colspan="3">inverse (dd)</th>
      </tr>
  </table>
  <h2>Utility tests</h2>
  <script type="text/javascript" src="mgrs.js"></script>
<body>
  <div id="mocha"></div>
  <script src="../dist/proj4.js"></script>
  <script src="lib/mocha.js"></script>
  <script src="lib/chai.js"></script>
  <script>
    mocha.setup({
      ui: "bdd",
      globals: ["console"],
      timeout: 300000
    });
    var assert = chai.assert;
  </script>
  <script src="testdata.js"></script>
  <script src="test.js"></script>
  <script>
    if (window.mochaPhantomJS) { 
      mochaPhantomJS.run(); 
    } else {
      mocha.run(); 
    }
  </script>
</body>
</html>
 No newline at end of file

test/index.old.html

0 → 100755
+35 −0
Original line number Diff line number Diff line
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <link href="base.css" type="text/css" rel="stylesheet"/>
  <title>Proj4js Test Page</title>
  <script src="../dist/proj4.js"></script>
  <script src="../src/util/MGRS.js"></script>
  <script src="testdata.js"></script>
  <script src="runtests.js"></script>
</head>

<body onload="runTests()">
  <div id="header">
    <h1>Proj4js test page</h1>
  </div>
  <div id="navbar">
    <a href="http://trac.osgeo.org/proj4js">Proj4js Wiki/Trac</a> | 
    <a href="http://wiki.osgeo.org/wiki/MetaCRS">OSGeo MetaCRS</a> |
    <a href="http://spatialreference.org/">spatialreference.org</a> |
    <a href="http://communitymapbuilder.org/">MapBuilder</a> | 
    <a href="http://openlayers.org/">OpenLayers</a> | 
  </div>
  <h2>Core tests</h2>
  <table id="testResult" border="1">
      <tr>
        <th>projection</th>
        <th>class</th>
        <th colspan="3">forward (m)</th>
        <th colspan="3">inverse (dd)</th>
      </tr>
  </table>
  <h2>Utility tests</h2>
  <script type="text/javascript" src="mgrs.js"></script>
</body>
</html>

test/lib/chai.js

0 → 100644
+4330 −0

File added.

Preview size limit exceeded, changes collapsed.

test/lib/mocha.css

0 → 100644
+251 −0
Original line number Diff line number Diff line
@charset "utf-8";

body {
  margin:0;
}

#mocha {
  font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 60px 50px;
}

#mocha ul, #mocha li {
  margin: 0;
  padding: 0;
}

#mocha ul {
  list-style: none;
}

#mocha h1, #mocha h2 {
  margin: 0;
}

#mocha h1 {
  margin-top: 15px;
  font-size: 1em;
  font-weight: 200;
}

#mocha h1 a {
  text-decoration: none;
  color: inherit;
}

#mocha h1 a:hover {
  text-decoration: underline;
}

#mocha .suite .suite h1 {
  margin-top: 0;
  font-size: .8em;
}

#mocha .hidden {
  display: none;
}

#mocha h2 {
  font-size: 12px;
  font-weight: normal;
  cursor: pointer;
}

#mocha .suite {
  margin-left: 15px;
}

#mocha .test {
  margin-left: 15px;
  overflow: hidden;
}

#mocha .test.pending:hover h2::after {
  content: '(pending)';
  font-family: arial, sans-serif;
}

#mocha .test.pass.medium .duration {
  background: #C09853;
}

#mocha .test.pass.slow .duration {
  background: #B94A48;
}

#mocha .test.pass::before {
  content: '✓';
  font-size: 12px;
  display: block;
  float: left;
  margin-right: 5px;
  color: #00d6b2;
}

#mocha .test.pass .duration {
  font-size: 9px;
  margin-left: 5px;
  padding: 2px 5px;
  color: white;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

#mocha .test.pass.fast .duration {
  display: none;
}

#mocha .test.pending {
  color: #0b97c4;
}

#mocha .test.pending::before {
  content: '◦';
  color: #0b97c4;
}

#mocha .test.fail {
  color: #c00;
}

#mocha .test.fail pre {
  color: black;
}

#mocha .test.fail::before {
  content: '✖';
  font-size: 12px;
  display: block;
  float: left;
  margin-right: 5px;
  color: #c00;
}

#mocha .test pre.error {
  color: #c00;
  max-height: 300px;
  overflow: auto;
}

#mocha .test pre {
  display: block;
  float: left;
  clear: left;
  font: 12px/1.5 monaco, monospace;
  margin: 5px;
  padding: 15px;
  border: 1px solid #eee;
  border-bottom-color: #ddd;
  -webkit-border-radius: 3px;
  -webkit-box-shadow: 0 1px 3px #eee;
  -moz-border-radius: 3px;
  -moz-box-shadow: 0 1px 3px #eee;
}

#mocha .test h2 {
  position: relative;
}

#mocha .test a.replay {
  position: absolute;
  top: 3px;
  right: 0;
  text-decoration: none;
  vertical-align: middle;
  display: block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  background: #eee;
  font-size: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: opacity 200ms;
  -moz-transition: opacity 200ms;
  transition: opacity 200ms;
  opacity: 0.3;
  color: #888;
}

#mocha .test:hover a.replay {
  opacity: 1;
}

#mocha-report.pass .test.fail {
  display: none;
}

#mocha-report.fail .test.pass {
  display: none;
}

#mocha-error {
  color: #c00;
  font-size: 1.5em;
  font-weight: 100;
  letter-spacing: 1px;
}

#mocha-stats {
  position: fixed;
  top: 15px;
  right: 10px;
  font-size: 12px;
  margin: 0;
  color: #888;
  z-index: 1;
}

#mocha-stats .progress {
  float: right;
  padding-top: 0;
}

#mocha-stats em {
  color: black;
}

#mocha-stats a {
  text-decoration: none;
  color: inherit;
}

#mocha-stats a:hover {
  border-bottom: 1px solid #eee;
}

#mocha-stats li {
  display: inline-block;
  margin: 0 5px;
  list-style: none;
  padding-top: 11px;
}

#mocha-stats canvas {
  width: 40px;
  height: 40px;
}

#mocha code .comment { color: #ddd }
#mocha code .init { color: #2F6FAD }
#mocha code .string { color: #5890AD }
#mocha code .keyword { color: #8A6343 }
#mocha code .number { color: #2F6FAD }

@media screen and (max-device-width: 480px) {
  #mocha  {
    margin: 60px 0px;
  }

  #mocha #stats {
    position: absolute;
  }
}
 No newline at end of file

test/lib/mocha.js

0 → 100644
+5373 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading