feat(nestsClient): WebTransport abstraction + fake + Kwik stub

Phase 3b-1 of the Clubhouse/nests integration. Lands the
[WebTransportSession] abstraction the MoQ layer (Phase 3c) will code
against, so MoQ framing + tests can develop in parallel with the real
Kwik-based transport integration (deferred to Phase 3b-2).

commonMain:
- `WebTransportSession` — bidi/uni stream access, datagrams, close.
- `WebTransportBidiStream` / `WebTransportReadStream` /
  `WebTransportWriteStream` — minimal read/write surface.
- `WebTransportFactory.connect(authority, path, bearerToken)` for
  opening sessions.
- `WebTransportException(kind, ...)` with four canonical failure modes
  (HandshakeFailed, ConnectRejected, PeerClosed, NotImplemented) so UI
  code doesn't need to know about library-specific exceptions.
- `FakeWebTransport.pair()` — in-memory, fully-wired client/server
  pair for unit-testing MoQ framing without touching a real QUIC stack.

jvmAndroid:
- `KwikWebTransportFactory` stub that throws
  `WebTransportException(NotImplemented)` at `connect()`. Doc spells
  out the handshake sequence (QUIC dial → H3 SETTINGS →
  `:method=CONNECT :protocol=webtransport` Extended CONNECT → 2xx) so
  Phase 3b-2 can drop the real implementation in without touching
  callers.

Tests:
- `FakeWebTransportTest` — datagram round-trip both directions,
  bidi-stream write visible on peer side, close() flips isOpen.
- `WebTransportExceptionTest` — kind + message + cause preserved.
- `KwikWebTransportFactoryTest` — `connect()` currently fails with the
  NotImplemented sentinel, so Phase 3b-2 can replace this test when
  the real handshake lands.

https://claude.ai/code/session_013nVLALALKaHVgHm9u5Cg8D
This commit is contained in:
Claude
2026-04-22 03:10:28 +00:00
parent 933b522273
commit 4ead4ccd5c
6 changed files with 500 additions and 0 deletions
@@ -0,0 +1,79 @@
/*
* Copyright (c) 2025 Vitor Pamplona
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
* Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.vitorpamplona.nestsclient.transport
import kotlinx.coroutines.flow.first
import kotlinx.coroutines.flow.toList
import kotlinx.coroutines.test.runTest
import kotlin.test.Test
import kotlin.test.assertContentEquals
import kotlin.test.assertEquals
import kotlin.test.assertFalse
import kotlin.test.assertTrue
class FakeWebTransportTest {
@Test
fun pair_starts_open() {
val (a, b) = FakeWebTransport.pair()
assertTrue(a.isOpen)
assertTrue(b.isOpen)
}
@Test
fun datagrams_from_a_arrive_on_b() =
runTest {
val (a, b) = FakeWebTransport.pair()
assertTrue(a.sendDatagram(byteArrayOf(1, 2, 3)))
assertContentEquals(byteArrayOf(1, 2, 3), b.incomingDatagrams().first())
}
@Test
fun datagrams_from_b_arrive_on_a() =
runTest {
val (a, b) = FakeWebTransport.pair()
assertTrue(b.sendDatagram(byteArrayOf(4, 5, 6)))
assertContentEquals(byteArrayOf(4, 5, 6), a.incomingDatagrams().first())
}
@Test
fun bidi_stream_write_is_visible_on_the_peer_side() =
runTest {
val (a, b) = FakeWebTransport.pair()
val clientStream = a.openBidiStream()
clientStream.write(byteArrayOf(0xAA.toByte()))
clientStream.finish()
val serverStream = b.peerOpenedBidiStreams().first()
val received = serverStream.incoming().toList()
assertEquals(1, received.size)
assertContentEquals(byteArrayOf(0xAA.toByte()), received.single())
}
@Test
fun close_flips_isOpen_and_drops_further_datagrams() =
runTest {
val (a, _) = FakeWebTransport.pair()
a.close()
assertFalse(a.isOpen)
assertFalse(a.sendDatagram(byteArrayOf(9)))
}
}
@@ -0,0 +1,50 @@
/*
* Copyright (c) 2025 Vitor Pamplona
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
* Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.vitorpamplona.nestsclient.transport
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertSame
class WebTransportExceptionTest {
@Test
fun exception_carries_kind_and_message() {
val ex =
WebTransportException(
kind = WebTransportException.Kind.HandshakeFailed,
message = "cert expired",
)
assertEquals(WebTransportException.Kind.HandshakeFailed, ex.kind)
assertEquals("cert expired", ex.message)
}
@Test
fun exception_preserves_cause() {
val root = RuntimeException("root")
val ex =
WebTransportException(
kind = WebTransportException.Kind.PeerClosed,
message = "peer went away",
cause = root,
)
assertSame(root, ex.cause)
}
}