Remove dependency on compilation module in function-sample
This commit is contained in:
@@ -23,10 +23,7 @@ import reactor.core.publisher.Flux;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.cloud.function.compiler.FunctionCompiler;
|
||||
import org.springframework.cloud.function.compiler.proxy.LambdaCompilingFunction;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.core.io.ByteArrayResource;
|
||||
|
||||
// @checkstyle:off
|
||||
@SpringBootApplication
|
||||
@@ -56,28 +53,5 @@ public class SampleApplication {
|
||||
return () -> Flux.fromArray(new String[] {"foo", "bar"});
|
||||
}
|
||||
|
||||
@Bean
|
||||
public Function<String, String> compiledUppercase(
|
||||
FunctionCompiler<String, String> compiler) {
|
||||
String lambda = "s -> s.toUpperCase()";
|
||||
LambdaCompilingFunction<String, String> function = new LambdaCompilingFunction<>(
|
||||
new ByteArrayResource(lambda.getBytes()), compiler);
|
||||
function.setTypeParameterizations("String", "String");
|
||||
return function;
|
||||
}
|
||||
|
||||
@Bean
|
||||
public Function<Flux<String>, Flux<String>> compiledLowercase(
|
||||
FunctionCompiler<Flux<String>, Flux<String>> compiler) {
|
||||
String lambda = "f->f.map(o->o.toString().toLowerCase())";
|
||||
return new LambdaCompilingFunction<>(new ByteArrayResource(lambda.getBytes()),
|
||||
compiler);
|
||||
}
|
||||
|
||||
@Bean
|
||||
public <T, R> FunctionCompiler<T, R> compiler() {
|
||||
return new FunctionCompiler<>();
|
||||
}
|
||||
|
||||
}
|
||||
// @checkstyle:on
|
||||
|
||||
@@ -1,127 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.example;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import reactor.core.publisher.Flux;
|
||||
|
||||
@SpringBootTest
|
||||
public class SampleApplicationTests {
|
||||
|
||||
@Autowired
|
||||
private Function<String, String> uppercase;
|
||||
@Autowired
|
||||
private Function<Flux<String>, Flux<String>> lowercase;
|
||||
@Autowired
|
||||
private Supplier<String> hello;
|
||||
@Autowired
|
||||
private Supplier<Flux<String>> words;
|
||||
@Autowired
|
||||
private Function<String, String> compiledUppercase;
|
||||
@Autowired
|
||||
private Function<Flux<String>, Flux<String>> compiledLowercase;
|
||||
@Autowired
|
||||
private Function<String, String> greeter;
|
||||
@Autowired
|
||||
private Function<Flux<String>, Flux<String>> exclaimer;
|
||||
@Autowired
|
||||
private Function<String, Integer> charCounter;
|
||||
|
||||
@Test
|
||||
public void contextLoads() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUppercase() {
|
||||
String output = this.uppercase.apply("foobar");
|
||||
assertThat(output).isEqualTo("FOOBAR");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLowercase() {
|
||||
Flux<String> output = this.lowercase.apply(Flux.just("FOO", "BAR"));
|
||||
List<String> results = output.collectList().block();
|
||||
assertThat(results.size()).isEqualTo(2);
|
||||
assertThat(results.get(0)).isEqualTo("foo");
|
||||
assertThat(results.get(1)).isEqualTo("bar");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testHello() {
|
||||
String output = this.hello.get();
|
||||
assertThat(output).isEqualTo("hello");
|
||||
}
|
||||
|
||||
// the following are contributed via @FunctionScan:
|
||||
|
||||
@Test
|
||||
public void testWords() {
|
||||
Flux<String> output = this.words.get();
|
||||
List<String> results = output.collectList().block();
|
||||
assertThat(results.size()).isEqualTo(2);
|
||||
assertThat(results.get(0)).isEqualTo("foo");
|
||||
assertThat(results.get(1)).isEqualTo("bar");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCompiledUppercase() {
|
||||
String output = this.compiledUppercase.apply("foobar");
|
||||
assertThat(output).isEqualTo("FOOBAR");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCompiledLowercase() {
|
||||
Flux<String> input = Flux.just("FOO", "BAR");
|
||||
Flux<String> output = this.compiledLowercase.apply(input);
|
||||
List<String> results = output.collectList().block();
|
||||
assertThat(results.size()).isEqualTo(2);
|
||||
assertThat(results.get(0)).isEqualTo("foo");
|
||||
assertThat(results.get(1)).isEqualTo("bar");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGreeter() {
|
||||
String greeting = this.greeter.apply("World");
|
||||
assertThat(greeting).isEqualTo("Hello World");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testExclaimer() {
|
||||
Flux<String> input = Flux.just("foo", "bar");
|
||||
Flux<String> output = this.exclaimer.apply(input);
|
||||
List<String> results = output.collectList().block();
|
||||
assertThat(results.size()).isEqualTo(2);
|
||||
assertThat(results.get(0)).isEqualTo("foo!!!");
|
||||
assertThat(results.get(1)).isEqualTo("bar!!!");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCharCounter() {
|
||||
Integer length = this.charCounter.apply("the quick brown fox");
|
||||
assertThat(length).isEqualTo(19);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -43,25 +43,6 @@ public class WebTestClientTests {
|
||||
.expectStatus().isOk().expectBody(String.class).isEqualTo("[\"foo\"]");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testStream() {
|
||||
|
||||
List<String> asObjectExpect = new ArrayList<>();
|
||||
asObjectExpect.add("foobar");
|
||||
|
||||
//as object
|
||||
client.post().uri("/lowercase").accept(MediaType.TEXT_EVENT_STREAM).body(Flux.just("FOO", "BAR"), String.class)
|
||||
.exchange().expectBodyList(String.class).isEqualTo(asObjectExpect);
|
||||
|
||||
List<String> asFluxExpect = new ArrayList<>();
|
||||
asFluxExpect.add("foo");
|
||||
asFluxExpect.add("bar");
|
||||
|
||||
//as flux
|
||||
client.post().uri("/lowercase").accept(MediaType.TEXT_EVENT_STREAM).body(Flux.just("FOO\n", "BAR\n"), String.class)
|
||||
.exchange().expectBodyList(String.class).isEqualTo(asFluxExpect);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCollection() {
|
||||
client.post().uri("/lowercase").contentType(MediaType.APPLICATION_JSON).body(Mono.just("[\"FOO\", \"BAR\"]"), String.class)
|
||||
|
||||
Reference in New Issue
Block a user