mirror of
https://github.com/apple/pkl.git
synced 2026-07-19 03:21:19 +02:00
666f8c3939
This adds a new feature, which allows Pkl to read resources and modules from external processes. Follows the design laid out in SPICE-0009. Also, this moves most of the messaging API into pkl-core
48 lines
1.4 KiB
Kotlin
48 lines
1.4 KiB
Kotlin
/*
|
|
* Copyright © 2024 Apple Inc. and the Pkl project authors. All rights reserved.
|
|
*
|
|
* 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 org.pkl.server
|
|
|
|
import org.junit.jupiter.api.AfterEach
|
|
import org.junit.jupiter.api.BeforeEach
|
|
import org.pkl.commons.test.PklExecutablePaths
|
|
import org.pkl.core.messaging.MessageTransports
|
|
|
|
class NativeServerTest : AbstractServerTest() {
|
|
private lateinit var server: Process
|
|
override lateinit var client: TestTransport
|
|
|
|
@BeforeEach
|
|
fun beforeEach() {
|
|
val executable = PklExecutablePaths.firstExisting.toString()
|
|
server = ProcessBuilder(executable, "server").start()
|
|
client =
|
|
TestTransport(
|
|
MessageTransports.stream(
|
|
ServerMessagePackDecoder(server.inputStream),
|
|
ServerMessagePackEncoder(server.outputStream)
|
|
) { _ ->
|
|
}
|
|
)
|
|
executor.execute { client.start() }
|
|
}
|
|
|
|
@AfterEach
|
|
fun afterEach() {
|
|
client.close()
|
|
server.destroy()
|
|
}
|
|
}
|