|
| 1 | +package io.lambdarpc |
| 2 | + |
| 3 | +import com.google.protobuf.ByteString |
| 4 | +import io.lambdarpc.BasicTests.Facade.add |
| 5 | +import io.lambdarpc.BasicTests.Facade.add5 |
| 6 | +import io.lambdarpc.BasicTests.Facade.distance |
| 7 | +import io.lambdarpc.BasicTests.Facade.eval |
| 8 | +import io.lambdarpc.BasicTests.Facade.eval5 |
| 9 | +import io.lambdarpc.BasicTests.Facade.evalAndReturn |
| 10 | +import io.lambdarpc.BasicTests.Facade.mapPoints |
| 11 | +import io.lambdarpc.BasicTests.Facade.normMap |
| 12 | +import io.lambdarpc.BasicTests.Facade.numpyAdd |
| 13 | +import io.lambdarpc.BasicTests.Facade.specializeAdd |
| 14 | +import io.lambdarpc.coders.DataCoder |
| 15 | +import io.lambdarpc.dsl.* |
| 16 | +import io.lambdarpc.functions.frontend.CallDisconnectedChannelFunction |
| 17 | +import io.lambdarpc.transport.LibService |
| 18 | +import io.lambdarpc.transport.grpc.serialization.RawData |
| 19 | +import io.lambdarpc.transport.grpc.serialization.rd |
| 20 | +import io.lambdarpc.utils.Endpoint |
| 21 | +import io.lambdarpc.utils.addr |
| 22 | +import io.lambdarpc.utils.toSid |
| 23 | +import kotlinx.coroutines.runBlocking |
| 24 | +import kotlinx.serialization.Serializable |
| 25 | +import org.junit.jupiter.api.AfterAll |
| 26 | +import org.junit.jupiter.api.BeforeAll |
| 27 | +import org.junit.jupiter.api.Test |
| 28 | +import org.junit.jupiter.api.TestInstance |
| 29 | +import kotlin.math.absoluteValue |
| 30 | +import kotlin.math.sqrt |
| 31 | +import kotlin.test.assertEquals |
| 32 | +import kotlin.test.assertTrue |
| 33 | + |
| 34 | +private typealias Norm = suspend (BasicTests.Point) -> Double |
| 35 | + |
| 36 | +@TestInstance(TestInstance.Lifecycle.PER_CLASS) |
| 37 | +class BasicTests { |
| 38 | + companion object { |
| 39 | + private val serviceId = "cddc248f-5271-4091-aeeb-f5f374e92e8e".toSid() |
| 40 | + } |
| 41 | + |
| 42 | + @Serializable |
| 43 | + data class Point(val x: Double, val y: Double) |
| 44 | + |
| 45 | + /** |
| 46 | + * Some struct with complex internal structure. |
| 47 | + */ |
| 48 | + data class NumpyArray<T>(val x: T) |
| 49 | + |
| 50 | + object NumpyArrayIntCoder : DataCoder<NumpyArray<Int>> { |
| 51 | + override fun encode(value: NumpyArray<Int>): RawData = |
| 52 | + ByteString.copyFrom(byteArrayOf(value.x.toByte())).rd |
| 53 | + |
| 54 | + override fun decode(data: RawData): NumpyArray<Int> = |
| 55 | + NumpyArray(data.bytes.toByteArray().first().toInt()) |
| 56 | + } |
| 57 | + |
| 58 | + object Lib { |
| 59 | + fun add5(x: Int) = x + 5 |
| 60 | + fun add(x: Int, y: Int) = x + y |
| 61 | + |
| 62 | + suspend fun eval5(f: suspend (Int) -> Int): Int = f(5) |
| 63 | + suspend fun eval(x: Int, f: suspend (Int) -> Int): Int = f(x) |
| 64 | + |
| 65 | + fun specializeAdd(x: Int): suspend (Int) -> Int = { x + it } |
| 66 | + |
| 67 | + suspend fun evalAndReturn(f: suspend (Int) -> Int): suspend (Int) -> Int { |
| 68 | + val x = f(5) // Works well, connection for executeAndAdd call is still alive |
| 69 | + return { |
| 70 | + val y = try { |
| 71 | + f(10) // This frontend function lives longer then evalAndReturn call connection |
| 72 | + } catch (e: CallDisconnectedChannelFunction) { |
| 73 | + 30 |
| 74 | + } |
| 75 | + x + y + it |
| 76 | + } |
| 77 | + } |
| 78 | + |
| 79 | + fun distance(a: Point, b: Point): Double { |
| 80 | + val dx = a.x - b.x |
| 81 | + val dy = a.y - b.y |
| 82 | + return sqrt(dx * dx + dy * dy) |
| 83 | + } |
| 84 | + |
| 85 | + suspend fun mapPoints(xs: List<Point>, f: suspend (Point) -> Double): List<Double> = |
| 86 | + xs.map { f(it) } |
| 87 | + |
| 88 | + suspend fun normMap(xs: List<Point>, transformNorm: suspend (Norm) -> Norm): List<Double> = |
| 89 | + xs.map { point -> transformNorm { it.x * it.x + it.y * it.y }(point) } |
| 90 | + |
| 91 | + fun numpyAdd(x: Int, arr: NumpyArray<Int>) = NumpyArray(x + arr.x) |
| 92 | + } |
| 93 | + |
| 94 | + object Facade { |
| 95 | + private val conf = Configuration(serviceId) |
| 96 | + |
| 97 | + val add5 by conf.def(j<Int>(), j<Int>()) |
| 98 | + val add by conf.def(j<Int>(), j<Int>(), j<Int>()) |
| 99 | + |
| 100 | + val eval5 by conf.def(f(j<Int>(), j<Int>()), j<Int>()) |
| 101 | + val eval by conf.def(j<Int>(), f(j<Int>(), j<Int>()), j<Int>()) |
| 102 | + |
| 103 | + val specializeAdd by conf.def(j<Int>(), f(j<Int>(), j<Int>())) |
| 104 | + val evalAndReturn by conf.def(f(j<Int>(), j<Int>()), f(j<Int>(), j<Int>())) |
| 105 | + |
| 106 | + val distance by conf.def(j<Point>(), j<Point>(), j<Double>()) |
| 107 | + |
| 108 | + val mapPoints by conf.def(j<List<Point>>(), f(j<Point>(), j<Double>()), j<List<Double>>()) |
| 109 | + |
| 110 | + private val norm = f(j<Point>(), j<Double>()) |
| 111 | + val normMap by conf.def(j<List<Point>>(), f(norm, norm), j<List<Double>>()) |
| 112 | + |
| 113 | + val numpyAdd by conf.def(j<Int>(), NumpyArrayIntCoder, NumpyArrayIntCoder) |
| 114 | + } |
| 115 | + |
| 116 | + private lateinit var service: LibService |
| 117 | + private lateinit var serviceDispatcher: ServiceDispatcher |
| 118 | + |
| 119 | + @BeforeAll |
| 120 | + fun before() { |
| 121 | + service = io.lambdarpc.dsl.LibService( |
| 122 | + serviceId, Endpoint("localhost", 0) |
| 123 | + ) { |
| 124 | + add5 of Lib::add5 |
| 125 | + add of Lib::add |
| 126 | + |
| 127 | + eval5 of Lib::eval5 |
| 128 | + eval of Lib::eval |
| 129 | + |
| 130 | + specializeAdd of Lib::specializeAdd |
| 131 | + evalAndReturn of Lib::evalAndReturn |
| 132 | + |
| 133 | + distance of Lib::distance |
| 134 | + |
| 135 | + mapPoints of Lib::mapPoints |
| 136 | + normMap of Lib::normMap |
| 137 | + |
| 138 | + numpyAdd of Lib::numpyAdd |
| 139 | + } |
| 140 | + service.start() |
| 141 | + serviceDispatcher = ServiceDispatcher( |
| 142 | + serviceId to Endpoint("localhost".addr, service.port) |
| 143 | + ) |
| 144 | + } |
| 145 | + |
| 146 | + @Test |
| 147 | + fun `simple add`() = runBlocking(serviceDispatcher) { |
| 148 | + assertEquals(11, add5(6)) |
| 149 | + assertEquals(11, add(5, 6)) |
| 150 | + } |
| 151 | + |
| 152 | + @Test |
| 153 | + fun `simple HOF eval`() = runBlocking(serviceDispatcher) { |
| 154 | + assertEquals(11, eval5 { it + 6 }) |
| 155 | + assertEquals(11, eval(5) { it + 6 }) |
| 156 | + } |
| 157 | + |
| 158 | + @Test |
| 159 | + fun `return function`() = runBlocking(serviceDispatcher) { |
| 160 | + assertEquals(11, specializeAdd(5)(6)) |
| 161 | + } |
| 162 | + |
| 163 | + @Test |
| 164 | + fun `closing execute channel`() = runBlocking(serviceDispatcher) { |
| 165 | + assertEquals(42, evalAndReturn { it * 2 }(2)) |
| 166 | + } |
| 167 | + |
| 168 | + @Test |
| 169 | + fun `default structure encoding`() = runBlocking(serviceDispatcher) { |
| 170 | + val p1 = Point(9.0, 1.0) |
| 171 | + val p2 = Point(5.0, 4.0) |
| 172 | + val d = distance(p1, p2) |
| 173 | + assertTrue((d - 5).absoluteValue < 0.001) |
| 174 | + } |
| 175 | + |
| 176 | + @Test |
| 177 | + fun `invoke frontend multiple times`() = runBlocking(serviceDispatcher) { |
| 178 | + val ps = listOf(Point(0.0, 0.0), Point(2.0, 1.0), Point(1.0, 1.5)) |
| 179 | + val expected = Lib.mapPoints(ps) { it.run { sqrt(x * x + y * y) } } |
| 180 | + val actual = mapPoints(ps) { it.run { sqrt(x * x + y * y) } } |
| 181 | + assertEquals(expected, actual) |
| 182 | + } |
| 183 | + |
| 184 | + @Test |
| 185 | + fun `lambda returning lambda`() = runBlocking(serviceDispatcher) { |
| 186 | + val ps = listOf(Point(0.0, 0.0), Point(2.0, 1.0), Point(1.0, 1.5)) |
| 187 | + val expected = Lib.normMap(ps) { norm -> { point -> sqrt(norm(point)) } } |
| 188 | + val actual = normMap(ps) { norm -> { point -> sqrt(norm(point)) } } |
| 189 | + assertEquals(expected, actual) |
| 190 | + } |
| 191 | + |
| 192 | + @Test |
| 193 | + fun `custom data coder`() = runBlocking(serviceDispatcher) { |
| 194 | + assertEquals(42, numpyAdd(2, NumpyArray(40)).x) |
| 195 | + } |
| 196 | + |
| 197 | + @AfterAll |
| 198 | + fun after() { |
| 199 | + service.shutdown() |
| 200 | + } |
| 201 | +} |
0 commit comments