Skip to content

Latest commit

 

History

History
227 lines (161 loc) · 7.61 KB

TestingFunctions.md

File metadata and controls

227 lines (161 loc) · 7.61 KB

Testing your functions

The Fn Java FDK testing harness allows you to quickly build and test your Java functions in your IDE and test them in an emulated function runtime without uploading your functions to the cloud. The framework uses JUnit 4 rules.

Add the test module to your project

To import the testing library add the following dependency to your Maven project with <scope>test</scope>.

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version> <!-- Most recent version of JUnit should work-->
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>com.fnproject.fn</groupId>
    <artifactId>testing</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <scope>test</scope>
</dependency>

Writing your first test

Suppose you have written a simple function as follows:

package com.example.fn;

public class MyFn {
  public String handleRequest(String input){
    return new StringBuilder(input).reverse().toString();
  }
}

The testing harness is a JUnit Rule that you should create as part of your test classes.

Create a test class that instantiates the testing rule as follows:

package com.example.fn;

import org.junit.Rule;
import org.junit.Test;

import com.fnproject.fn.testing.FnTestingRule;

public class FunctionTest {
  @Rule
  public final FnTestingRule testing = FnTestingRule.createDefault();

  @Test
  public void shouldReverseStrings() {
    // ...
  }
}

The testing rule is stateful and should be created once per test (as above).

The following sends an event with a simple string body to your function, and then checks the response which can be retrieved from the test harness as an FnResult object.

  @Test
  public void shouldReverseStrings() {
    testing.givenEvent().withBody("Hello").enqueue();

    testing.thenRun(MyFn.class, "handleRequest");

    Assert.assertEquals("olleH", testing.getOnlyResult().getBodyAsString());
  }

It is also possible to send multiple events and then check the pending responses. This simulates the behaviour of hot functions. With hot functions all enqueued events will be executed by the runtime before results can be checked; use getResults() to get a list of FnResult objects that describe the output.

  @Test
  public void shouldReverseStrings() {
    testing.givenEvent().withBody("One").enqueue();
    testing.givenEvent().withBody("Two").enqueue();
    testing.givenEvent().withBody("Three").enqueue();

    testing.thenRun(MyFn.class, "handleRequest");

    List<FnResult> results = testing.getResults();
    Assert.assertEquals(results.size(), 3);
    FnResult theResult = results.get(0);
    Assert.assertEquals("enO", theResult.getBodyAsString());
    theResult = results.get(1);
    Assert.assertEquals("owT", theResult.getBodyAsString());
    theResult = results.get(2);
    Assert.assertEquals("eerhT", theResult.getBodyAsString());
  }

For enqueuing the same event multiple times you can also pass the number of calls to enqueue as follows:

    testing.givenEvent().withBody("someEvent").enqueue(10);

Testing data binding and configuration

The testing harness replicates the behavior of the functions platform, including data binding and configuration.

Given a class that uses POJO data binding and some initialization:

public class MyFnBinding{
  public static class DataInput{
    public String a;
    public String b;
  }

  public static class DataOutput{
    public String c;
  }

  private String prefix;

  @FnConfiguration
  public void configure(RuntimeContext ctx) {
    prefix = ctx.getConfigurationByKey("PREFIX").orElse("");
  }

  public DataOutput handleRequest(DataInput input){
    DataOutput output  = new DataOutput();
    output.c = prefix + input.a + input.b;
    return output;
  }
}

You can test that this is all handled correctly as follows:

  @Test
  public void shouldHandleInput() {
    testing.setConfig("PREFIX", "blah-");

    testing
      .givenEvent()
      .withHeader("content-type", "application/json")
      .withBody("{\"a\": \"foo\", \"b\":\"bar\"}")
      .enqueue();

    testing.thenRun(MyFnBinding.class, "handleRequest");

    FnResult result = testing.getOnlyResult();
    Assert.assertEquals("application/json", result.getHeaders().get("content-type").get());
    Assert.assertEquals("{\"c\":\"blah-foobar\"}", result.getBodyAsString());
  }

Testing Fn Flows

You can use FnTestingRule to test Fn Flows within your functions. If flow stages are started by functions within thenRun then the testing rule will execute the stages of those flows locally, returning when all spawned flows are complete.

FnTestingRule supports mocking the behaviour of Fn functions invoked by the invokeFunction() API within flows.

You can specify that the invocation a function returns a valid value (as a byte array):

  @Test
  public void callsRemoteFunctionWhichSucceeds() {

    testing.givenFn("example/other-function").withResult("blah".getBytes());

    // ...

  }

Or you can specify that the invocation a function will cause a user error or a platform error:

  @Test
  public void callsRemoteFunctionWhichCausesAnError() {

    testing.givenFn("example/other-function").withFunctionError();
    testing.givenFn("example/other-function-2").withPlatformError();

    // ...

  }

Finally you specify custom actions to perform when the function is called, using for example a lambda. This can be used to check some behavior:

  static AtomicBoolean called = new AtomicBoolean();

  @Test
  public void callsRemoteFunction() {

    testing.givenFn("example/other-function").withAction( (data) -> { called.set(true); return data; } );

    called.set(false);

    // ... prepare an event and run the function ...

    Assert.assertTrue(called.get());
  }

The same mechanism can be used to integrate mocking frameworks like Mockito.

Flow stages may execute in parallel. If you have several withAction clauses accessing the same shared state, you must ensure that that access is thread-safe.

Sharing data between tests and your functions

To ensure isolation of each function invocation and/or flow stage, and to simulate the behaviour of the real Fn platform (where each function invocation can potentially run in a different JVM), the FnTestingRule runs each thenRun invocation and each Flow stage using a different Java Class Loader.

While this improves the veracity of tests, it prevents your tests from accessing or modifying the state of your functions and vice versa.

If you need to share objects or static data between your test classes and your functions (e.g. to pre-initialize global state) you can do so within your tests using the addSharedClass (for a specific class) and addSharedPrefix (for a package, or class prefix) methods on FnTestingRule.

    testing.addSharedClass(MyClassWithStaticState.class); // Shares only the specific class
    testing.addSharedPrefix("com.example.MyClassWithStaticState"); // Shares the class and anything under it
    testing.addSharedPrefix("com.example.mysubpackage."); // Shares anyhting under a package

While it is possible, it is not generally correct to share the function class itself with the test Class Loader - doing so may result in unexpected (not representative of the real fn platform) initialisation of static fields on the class. With Flows sharing the test class may also result in concurrent access to static data (via @FnConfiguration methods).