You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@predictionio.apache.org by do...@apache.org on 2016/08/09 21:44:00 UTC

[52/52] [abbrv] incubator-predictionio git commit: [PIO-17] Testing infrastructure

[PIO-17] Testing infrastructure

Merge branch 'testing-infrastructure' of https://github.com/ziemin/incubator-predictionio into develop

Closes apache/incubator-predictionio#267


Project: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/commit/326e910a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/tree/326e910a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/diff/326e910a

Branch: refs/heads/develop
Commit: 326e910a56142a2014f3a1c379b568d6b16c8000
Parents: a84dcab 1e09b91
Author: Donald Szeto <do...@apache.org>
Authored: Tue Aug 9 14:39:02 2016 -0700
Committer: Donald Szeto <do...@apache.org>
Committed: Tue Aug 9 14:39:02 2016 -0700

----------------------------------------------------------------------
 .travis.yml                                     |  52 ++--
 tests/Dockerfile                                |  89 ++++++
 tests/README.md                                 |  31 ++
 tests/after_script.travis.sh                    |   7 +
 tests/before_script.travis.sh                   |  25 ++
 tests/docker-files/env-conf/hbase-site.xml      |  12 +
 tests/docker-files/env-conf/pio-env.sh          |  87 ++++++
 tests/docker-files/env-conf/spark-defaults.conf |  13 +
 tests/docker-files/env-conf/spark-env.sh        |  49 +++
 tests/docker-files/init.sh                      |  40 +++
 tests/pio_tests/README.md                       |  43 +++
 tests/pio_tests/__init__.py                     |   0
 .../partially_malformed_events.json             |  10 +
 .../data/eventserver_test/rate_events_25.json   | 278 +++++++++++++++++
 .../data/eventserver_test/signup_events_51.json | 257 +++++++++++++++
 .../pio_tests/data/quickstart_test/engine.json  |  21 ++
 .../engines/recommendation-engine/README.md     |  42 +++
 .../engines/recommendation-engine/build.sbt     |  12 +
 .../engines/recommendation-engine/engine.json   |  21 ++
 .../engines/recommendation-engine/manifest.json |   1 +
 .../recommendation-engine/project/assembly.sbt  |   1 +
 .../recommendation-engine/project/pio-build.sbt |   1 +
 .../src/main/scala/ALSAlgorithm.scala           | 138 +++++++++
 .../src/main/scala/ALSModel.scala               |  63 ++++
 .../src/main/scala/DataSource.scala             | 103 +++++++
 .../src/main/scala/Engine.scala                 |  32 ++
 .../src/main/scala/Evaluation.scala             |  89 ++++++
 .../src/main/scala/Preparator.scala             |  19 ++
 .../src/main/scala/Serving.scala                |  13 +
 .../engines/recommendation-engine/template.json |   1 +
 tests/pio_tests/globals.py                      |  17 +
 tests/pio_tests/integration.py                  |  46 +++
 tests/pio_tests/scenarios/__init__.py           |   0
 tests/pio_tests/scenarios/basic_app_usecases.py | 154 +++++++++
 tests/pio_tests/scenarios/eventserver_test.py   | 155 ++++++++++
 tests/pio_tests/scenarios/quickstart_test.py    | 125 ++++++++
 tests/pio_tests/tests.py                        |  80 +++++
 tests/pio_tests/utils.py                        | 309 +++++++++++++++++++
 tests/run_docker.sh                             |  39 +++
 tests/script.travis.sh                          |  21 ++
 40 files changed, 2474 insertions(+), 22 deletions(-)
----------------------------------------------------------------------