Executable software specification tool that specifies behaviour both at the class and application level using Scala.

learn more… | top users | synonyms

1
vote
2answers
16 views

Unresolved symbol s2 in Specs2 class

When I compile my specification, the compiler tells me "error: value s2 is not a member of StringContext" The salient portion of my specification class is: import org.specs2._ import ...
0
votes
1answer
33 views

How to perform a custom check of the arguments being passed to mockito mocks

I have a problem writing tests for scala project using specs2 and mockito. Is there a way to perform some complex checks for arguments that was passed by a method being tested to a mocked service ...
4
votes
1answer
41 views

Play modules test & FakeApplication

I would like to know what's the best way to run specs2 tests on a PlayFramework module and be able to simulate it running. My module contains some routes in a file named mymodule.routes In my apps I ...
1
vote
2answers
53 views

Running an individual test from a specification

Is there a way to run a specific test from a Specs 2 Specification? e.g. If I have the following: class FooSpec extends Specification { "foo" should { "bar" in { // ... } "baz" ...
4
votes
1answer
28 views

How do I define Context for DataTables in specs2

I'm trying to define some context so that it's executed for each row of data table (before assertion is run on each row). I've found this example but for the life of me I can't figure out how to ...
1
vote
2answers
125 views

Scala spec2 object.productID must_== “123” fails

I've updated my question, deleted old text to make it easier to read. scalaVersion := "2.10.1" "org.specs2" %% "specs2" % "1.13" % "test" My spec2 test: package ...
0
votes
2answers
56 views

Scalatest or Specs2 - Set up and teardown of variables in tests running in parallel

If I have some variables that I need set up for EACH TEST IN A SUITE, is it possible to somehow set them up and get them into the test without writing a suite for each test? I.e., setup: val ...
0
votes
0answers
110 views

Test Driven Developement in SCALA [closed]

I am new to SCALA. Can you guide me about how to do with Test Driven Development(TDD) using SCALA. I knew about specs2, but I am looking for more examples. I am following Play scala reference but ...
1
vote
0answers
48 views

Adding an SBT plugin which does not specify an SBT version in its URL

Specs2 does not define the SBT version in its URL: https://oss.sonatype.org/content/repositories/releases/org/specs2/specs2_2.9.2/1.12.3/ This is causing problems for SBT when trying to resolve it... ...
1
vote
2answers
37 views

How to access test/example/fragment name in Specs2 before and after methods?

I would like to do something like: class MySpec extends Specification with BeforeAfterExample { var testName var clientDir def before { testName = fragmentName.replaceAll(" ", "-") ...
1
vote
1answer
81 views

A simple Scala Given/When/Then style specification failed

I am new to Spec2, and trying to learn it. I come up with the following codes, @RunWith(classOf[JUnitRunner]) class GWTStyleSpec extends Specification { "A given-when-then example for the ...
0
votes
1answer
71 views

Improving productivity with Scala test cycle

It would be great to improve test driven development productivity by automatically firing of tests whenever there is a code change. This is what I'm hoping for. Whenever a Scala file is saved, SBT ...
1
vote
1answer
63 views

How to access test/example name in Specs2?

I have some tests that share a fixture and would like to isolate the tests from each other. One way to do this would be to use the test/example name as part of a 'namespace' (eg as part of a directory ...
1
vote
2answers
66 views

Unit testing a method return with org.specs2

I want to perform unit testing on the return values of a method nested under an object. Example: package code.learn import org.specs2.mutable._; import com.learning.run.CMMDC; class testing extends ...
1
vote
1answer
127 views

Playframework Scala Specs2 JSON Matchers

I'm using the Play! framework and trying to work with JSON response messages in Specs2 tests with no success. What I am trying to do is assert key->value pairs in a JsValue like in the example below ...
1
vote
2answers
820 views

How to setup IntelliJ + Scala + specs + sbt project?

I am trying to setup an empty sbt project with specs2 for Scala (2.10) with IntelliJ (12.1) support and I am getting this error when I do sbt compile on empty project directory: % sbt compile ...
1
vote
2answers
136 views

In specs2, conditionally executing subtests on result returned from function that may throw exceptions

In specs2, what is the proper way to express a pattern of subtests that only execute if its "parent" test returned a result without throwing an exception? I have a function maybeGiveMeAThing, and it ...
2
votes
2answers
90 views

JVM memory settings for specs2

SBT keeps running out of memory on some of my bigger acceptance style tests using specs2 and spray-testkit. I have 10 gigs or RAM available and currently I start SBT (using the SBT extras script) with ...
1
vote
2answers
49 views

How can you see if your code is running in test mode with specs2?

How do you check if you program is being tested from inside the application with specs2? For example in Play you can check with play.Play.isTest()
4
votes
3answers
239 views

BDD in Scala - Does it have to be ugly?

I've used lettuce for python in the past. It is a simple BDD framework where specs are written in an external plain text file. Implementation uses regex to identify each step, proving reusable code ...
1
vote
3answers
99 views

Can I use a mock File in my Specs2 test for writing to a file? If so, How?

I've successfully used Specs2 to test serialization to a file, but the test uses a real file (written to /tmp/). I'd rather not touch disk just for a test. Is there a way to use a mocked file? def ...
1
vote
1answer
196 views

How do I verify invokations with specific string matchers in Specs2 with Mockito

I have a test along these lines: httpClient.post(anyString, anyString) returns (first, second) //do my thing there were two(httpClient).post(anyString, anyString) This works fine, but I want to ...
1
vote
1answer
73 views

How to run specifications sequentially

I want to create few specifications that interoperate with database. class DocumentSpec extends mutable.Specification with BeforeAfterExample { sequential def before() = {createDB()} def ...
4
votes
2answers
362 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
124 views

Run all tests without the @RunWith(classOf[JUnitRunner]) dance?

Is there any way to set up IntelliJ's JUnit "Run All Tests" command to automatically pick up Scala Specs2? i.e. removing the boilerplate annotation in this snippet: @RunWith(classOf[JUnitRunner]) ...
1
vote
1answer
104 views

spec2 tests failing for scalatra app with swagger support

When calling a prototypical spec3 test case on a scalatra app with swagger support, the tests fail. Here's the test/spec code: ServletSpec.scala class ServletSpec extends ScalatraSpec { def is = ...
1
vote
1answer
60 views

How can I skip a “should” block/fragment in specs2?

Suppose I have a specs2 specification defined in the "unit" style as follows: import org.specs2.mutable class MyClassSpec extends mutable.Specification { "myMethod" should { "return positive ...
1
vote
1answer
99 views

Error using Specs2 with FluentLenium Api

I use Scala 2.10, Specs2 13.1-SNAPSHOT and the FluentLenium Api provided by Play2 Framework 2.1. I have this line of code in my IntegrationSpec file, finding a child element (according to ...
1
vote
0answers
105 views

Can't run specific test specs based on namespace using sbt at the shell

I'm trying to run my specs2 tests from the shell as part of my CI build. When I run the following command on my local windows machine it runs the appropriate specs: specs defined in the Unit ...
1
vote
1answer
36 views

How can I reduce the failure display in specs2

I'm trying to compare two very large arrays using specs2. Unfortunately when the arrays are not equal it displays the content of each of the arrays under actual and expected. Is there anyway I can ...
1
vote
2answers
219 views

Is it possible to use string matchers in combination with specs2 Json matchers?

Inside a specs2 test I'm validating json strings using JSON matchers. I know that it's possible to use regexes to match values like so someJson must */("key")/("(one|other)".r) Is it possible in a ...
0
votes
1answer
148 views

Specs2 - How to define complex objects for Given/When/Then steps

Specs2's documentation and samples show some codes about the use of Given/Then/When style in an acceptance test. Here one of them: "A given-when-then example for the addition" ^ ...
0
votes
1answer
89 views

Specs2/Neo4j - Using ImpermanentGraphDatabase with Specs2

I'm writing an acceptance test using Specs2. I want to use ImpermanentGraphDatabase in order to have an in-memory Neo4j graph; ideal for integration testing. I set up Spring-Data for Neo4j and my ...
1
vote
1answer
113 views

Specs2 - Unit specification style should not be used in concurrent environments

Specs2 promotes functional style when dealing with Acceptance specification (even Unit specification if we want). Risks of using old style (mutable style) are mentioned in the spec Specs2 philosophy ...
0
votes
1answer
264 views

How to run an embedded elastic search instance for testing

I'm working in a setup that has an embedded elastic search instance for unit testing purposes, but when I run the tests continuously with sbt (~test-only <my-test>) the system becomes ...
0
votes
2answers
162 views

Using pattern matching with Specs2 and Play in Scala

I have a simple problem with Scala/Play 2.0 and Specs. This is my test "Server" should { "return a valid item with appropriate content type or a 404" in { val Some(result) = ...
2
votes
1answer
77 views

specs2: Multiple matcher expressions (Unit specification)

How can I check multiple expressions in one Matcher fragment? For example: class Foo extends Specification { "Retrieving open issues" should { "return expected properties with expected ...
2
votes
2answers
258 views

Specs2 and @Before/@After-like methods

Given the code like: class RESTAcceptanceTest extends Specification { override def is = anonymous ^ signinOAuth def anonymous = "Something" ^ givenSomething ^ "must ...
0
votes
1answer
141 views

Scala/Play 2 - Can't get sample specs2 test to run

I'm using the Play Framework v2.04 with Scala on OS X (installed via Homebrew). Everything works as expected, however I can't seem to get the basic Hello World sample specs2 test from the Play ...
3
votes
1answer
309 views

How to match dates through fromJson(toJson(date)) with specs2

I am stuck on the following problem : I want to write a specs2 specification to assert that my to and from json transformations are symetrical. However, I get an error on joda datetime dates. ...
1
vote
1answer
155 views

How do you run only a single Spec2 specification with SBT?

If you have 2 tests defined in your SBT project: class Spec1 extends Specification { def is = "Tests for specification 1" ^ p ^ "Test case 1" ! todo ^ end } and class ...
1
vote
1answer
77 views

Specs2 - equality testing in scala

I have been testing my code with Specs2 for some time now and in my test I wanted to ensure that two objects of some type compare correctly: "compare based on carrier value" in { val b0 = new ...
3
votes
2answers
161 views

Final clean up in specs2

I am writing a specs2 Unittest for my scala software. The execution is working well. The only problem I have, is that I need to clean up after all test are finished. I just cannot find any solution ...
2
votes
1answer
201 views

Executing reset method before each test in Spec2

I have a defined test method chain in test class using Spec2: def is = "EntriesServlet with logged user" ^ "POST / request should update entry that user owns" ! ...
1
vote
1answer
170 views

Play framework specs2 url testing

I'm trying to figure out how to test multiple URLs in the Play framework using specs2 and I can't seem to figure out the proper way to do it without starting multiple servers. import ...
3
votes
1answer
436 views

Specs test with Fakeapplication fails with access to play.Cache -> no application present

I have a setup like this: class PriceAwareSpec extends Specification { sequential running(FakeApplication()) { val price = "CHF 50.00" val priceAsHtml: Html = Html(price) val context: ...
1
vote
3answers
454 views

How to let gradle generate junit test result reports for custom sourceset?

I have set up a source set for functional testing in my project. Everything is working as expected, except the generation of junit test reports. I cannot see what configuration bit I am missing. Here ...
0
votes
1answer
124 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 ...
1
vote
1answer
220 views

Specify tests order using specs2 (scala/play framework)

I am currently writing a set of tests for a Scala Play application using the Specs2 library. I had some Stack overflow errors during the compilation process because the tests string was too long, so ...
2
votes
1answer
132 views

Acceptance style testing in favour of unit style testing with Specs2?

In the context of Specs2, a purist may argue that one should use unit testing style to do, well, unit testing. And that Specs2 acceptance testing style is for doing acceptance tests. That sounds kinda ...

1 2 3