0
votes
0answers
34 views

Test WebSocket in PlayFramework

I have a WebSocket in my Play application and I want to write a test for it, but I couldn't find any example on how to write such a test. I found a discussion in the play-framework Google group but ...
0
votes
1answer
34 views

play test resource folders not visible in eclipse

After project/Build.scala file is defined as val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(defaultScalaSettings:_*).settings( ,resourceDirectory in Test ...
0
votes
1answer
92 views

Play 2 - Zentask Java Tutorial - jUnit ebean test failure

Solution: you dont need IDE for testing, just run "play test" in the console Good Evening! I just started to get into Play Framework, I worked with jUnit before and also used testing in ...
1
vote
0answers
117 views

Set session cookies in play framework testing using selenium hd

I am trying to do some unit testing using selenium hd. I currently have the following code: browser.goTo("http://localhost:3333/") browser.$("#email").text("michele@sample.com") ...
4
votes
1answer
143 views

Play framework 2.0. Use alternative application.conf in test

my Play using mysql in production. But I am trying to use memory for testing. I created 2 conf file, 1 is application.conf, the other is application.test.conf (in the same directory). I tried to do ...
0
votes
1answer
59 views

Testing Play 2.0 Controllers inside sub-packages

Picking up again with Play!, now using 2.0.3-RC2, I'm having a testing issue. I have an application with some controllers packaged under controllers package, for example: package ...
4
votes
2answers
348 views

Writing a test case for file uploads in Play 2.1 and Scala

I found the following question/answer: Test MultipartFormData in Play 2.0 FakeRequest But it seems things have changed in Play 2.1. I've tried adapting the example like so: "Application" should { ...
1
vote
1answer
65 views

Test Actors in Play Framework but Database is shutdown

I am using Play 2.0.4 and I'm doing a test unit for actors who make use of the database. The test begins well, but then at a given moment the connection with the database is closed and the actor who ...
1
vote
1answer
69 views

Play 2.0 doesn't run all tests

I'm porting an application over to Play 2.0 and for some reason it's not running all the tests. It finds all the test classes. But just doesn't run any tests in most of them. I tried moving the ...
0
votes
0answers
37 views

playframework 2 java launching the tests

I've tried to launch standard tests for 'Computer Database' sample application in IntelliJ IDEA. They are failing by different reasons (like in this buzz March 2012). I just wandered is it not fixed ...
0
votes
1answer
448 views

Play 2 framework testing simulate session and POST?

When running a web test like this @Test public void runInBrowser() { running(testServer(3333), HtmlUnitDriver.class, new Callback<TestBrowser>() { public void invoke(TestBrowser ...
0
votes
1answer
123 views

Stackoverflow with scala specs2

I'm currently writing some unit tests for a play application in scala using the specs2 library. I constantly have a stack overflow error durring the compilation process. I've splitted the chain into ...
0
votes
1answer
200 views

Play 2.0: FakeApplication calling a stub controller instead real one

This is a continuation of a prior question in which answer I saw that I had a misconception about the use of plugins in FakeApplication. First I have a Model created as a trait and a object that ...
0
votes
1answer
167 views

Stub Controller in Play 2.0

I am trying folow the example from Mock Objects in Play[2.0] but unfortunately I am not having success. I have a UsersController that uses a UserModel. trait UserModel extends ModelCompanion[User, ...
2
votes
1answer
1k views

play framework 2: test a request with a json string as body

I have the following action def save() = Action(parse.json) { implicit request => request.body.asOpt[IdeaType].map { ideatype => ideatype.save.fold( errors => ...
9
votes
4answers
628 views

Play! framework: customize which tests are run

I have a Play! 2 for Scala application, and I am using Specs2 for tests. I can run all tests with the test command, or a particular specification with test-only MyParticularSpec. What I would like to ...
0
votes
0answers
183 views

Play 2 Java fake application vs real for testing

I was wondering with my colleague what is the difference between a fake application started within a test case and the real application. For example, what is omitted from the fake application compared ...
0
votes
1answer
144 views

Mocking third party API in Play controller

In an app based on the Play! Framework (2.0, Java) I want to mock a third party API when testing the controllers. I've picked Mockito for this because I couldn't find out about any built-in mocking ...
2
votes
2answers
298 views

Run Acceptance Test Play 2 - Server is not started

I wrote a acceptance test to in a Play! 2 Framework, my test is: @Test public void goToIndexPageAT() { running(testServer(3333, fakeApplication(inMemoryDatabase())), HTMLUNIT, new ...
1
vote
1answer
610 views

Run Test Play! Framework - DataSource user is null

Hello I am trying run a simple test in a web app using Play! Framework, but I got a error: [info] RouteTest [error] Test RouteTest.testRouteActivityIndex failed: DataSource user is null? [error] ...
4
votes
2answers
625 views

Fixtures in Play! 2 for Scala

I am trying to do some integration testing in a Play! 2 for Scala application. For this, I need to load some fixtures to have the DB in a known state before each test. At the moment, I am just ...
0
votes
0answers
153 views

playframework 2.x with scala - How to show logger info from specs2 running test?

I did a couple of simple tests using specs2, and I inserted several play.Logger.info("messsage") in it, but they just don't appear anywhere... Is there some way to enable them to be shown somewhere? ...
0
votes
1answer
154 views

How to create test-only routes and views on playframework 2?

I am developing a Play! 2 application that generates some html/js widgets which will be embedded into 3rd-party websites. Their linking are dynamic thus I cannot have static test files. How can I ...
0
votes
1answer
154 views

Testing promises in Play2 for Scala

I have a Play2 application that needs to call external services. I would like to test that I can connect to these services and get the expected answers. The problem is that the WS API only returns a ...
0
votes
1answer
275 views

Setting language in a fakeApplication() for Play! 2.0.2

running(fakeApplication(), new Runnable() { public void run() { Content html = views.html.index.render(loginForm); ...
3
votes
1answer
238 views

HTTP Context for testing in Java Play! 2.0.2

We're trying to write tests for our views, but some of them require session variables to properly render. This is what a standard test looks like: @Test public void indexTest() { ...
13
votes
4answers
3k views

Play framework 2.0 continuos integration setup

I am looking for ideas for a Play 2.0 continuos integration setup. It would contain typical jobs like build after a git push, nightly builds with deployment to a test Heroku instance etc. Also code ...
1
vote
1answer
380 views

Tests are not executed in Play Framework 2.0

in my Play project I have some junit tests. Earlier this week I've been able to run the test from within play console using test command. I could see the successes and failures. Unfortunately ...
5
votes
3answers
2k views

Mock Objects in Play[2.0]

I want to test my Play application by providing mock objects during a test. Off the top of my head, there are a few ways to go about this. Provide an alternative route files during testing Use ...
5
votes
2answers
542 views

How to test Zentasks sample app from Play 2.0

I play with Play 2.0, Scala version. Currently, I analyze Zentasks sample app. One of the part of this app is authentication mechanism mostly covered in Secured trait. I'm wondering how I can test ...