Files
@ 7e5f19869dd2
Branch filter:
Location: CSY/reowolf/src/runtime2/tests/transfer_ports.rs
7e5f19869dd2
5.5 KiB
application/rls-services+xml
Remove distinction between primitive/composite
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | use super::*;
#[test]
fn test_transfer_precreated_port_with_owned_peer() {
compile_and_create_component("
comp port_sender(out<in<u32>> tx) {
channel a -> b;
sync put(tx, b);
}
comp port_receiver(in<in<u32>> rx) {
sync auto a = get(rx);
}
comp constructor() {
channel a -> b;
new port_sender(a);
new port_receiver(b);
}
", "constructor", no_args());
}
#[test]
fn test_transfer_precreated_in_struct_with_owned_peer() {
compile_and_create_component("
struct PortPair<T> {
out<T> tx,
in<T> rx,
}
comp port_sender(out<PortPair<u32>> tx) {
channel created_tx_a -> created_rx_a;
channel created_tx_b -> created_rx_b;
sync put(tx, PortPair{ tx: created_tx_a, rx: created_rx_b });
sync {
auto val = get(created_rx_a);
put(created_tx_b, val);
}
}
comp port_receiver(in<PortPair<u32>> rx) {
channel fake_tx -> fake_rx;
auto conn = PortPair{ tx: fake_tx, rx: fake_rx };
sync conn = get(rx);
sync {
put(conn.tx, 5);
auto val = get(conn.rx);
while (val != 5) {}
}
}
comp constructor() {
channel tx -> rx;
new port_sender(tx);
new port_receiver(rx);
}
", "constructor", no_args());
}
#[test]
fn test_transfer_precreated_port_with_foreign_peer() {
compile_and_create_component("
comp port_sender(out<in<u32>> tx, in<u32> to_send) {
sync put(tx, to_send);
}
comp port_receiver(in<in<u32>> rx) {
sync auto a = get(rx);
}
comp constructor() {
channel tx -> rx;
channel forgotten -> to_send;
new port_sender(tx, to_send);
new port_receiver(rx);
}
", "constructor", no_args());
}
#[test]
fn test_transfer_synccreated_port() {
compile_and_create_component("
comp port_sender(out<in<u32>> tx) {
sync {
channel a -> b;
put(tx, b);
}
}
comp port_receiver(in<in<u32>> rx) {
sync auto a = get(rx);
}
comp constructor() {
channel a -> b;
new port_sender(a);
new port_receiver(b);
}
", "constructor", no_args());
}
#[test]
fn test_transfer_precreated_port_with_owned_peer_and_communication() {
compile_and_create_component("
comp port_sender(out<in<u32>> tx) {
channel a -> b;
sync put(tx, b);
sync put(a, 1337);
}
comp port_receiver(in<in<u32>> rx) {
channel a -> b; // this is stupid, but we need to have a variable to use
sync b = get(rx);
u32 value = 0;
sync value = get(b);
while (value != 1337) {}
}
comp constructor() {
channel a -> b;
new port_sender(a);
new port_receiver(b);
}
", "constructor", no_args());
}
#[test]
fn test_transfer_precreated_port_with_foreign_peer_and_communication() {
compile_and_create_component("
comp port_sender(out<in<u32>> tx, in<u32> to_send) {
sync put(tx, to_send);
}
comp message_transmitter(out<u32> tx) {
sync put(tx, 1337);
}
comp port_receiver(in<in<u32>> rx) {
channel unused -> b;
sync b = get(rx);
u32 value = 0;
sync value = get(b);
while (value != 1337) {}
}
comp constructor() {
channel port_tx -> port_rx;
channel value_tx -> value_rx;
new port_sender(port_tx, value_rx);
new port_receiver(port_rx);
new message_transmitter(value_tx);
}
", "constructor", no_args());
}
#[test]
fn test_transfer_precreated_port_with_owned_peer_back_and_forth() {
compile_and_create_component("
comp port_send_and_receive(out<in<u32>> tx, in<in<u32>> rx) {
channel a -> b;
sync {
put(tx, b);
b = get(rx);
}
}
comp port_receive_and_send(in<in<u32>> rx, out<in<u32>> tx) {
channel unused -> transferred; // same problem as in different tests
sync {
transferred = get(rx);
put(tx, transferred);
}
}
comp constructor() {
channel port_tx_forward -> port_rx_forward;
channel port_tx_backward -> port_rx_backward;
new port_send_and_receive(port_tx_forward, port_rx_backward);
new port_receive_and_send(port_rx_forward, port_tx_backward);
}", "constructor", no_args());
}
#[test]
fn test_transfer_precreated_port_with_foreign_peer_back_and_forth_and_communication() {
compile_and_create_component("
comp port_send_and_receive(out<in<u32>> tx, in<in<u32>> rx, in<u32> to_transfer) {
sync {
put(tx, to_transfer);
to_transfer = get(rx);
}
sync {
auto value = get(to_transfer);
while (value != 1337) {}
}
}
comp port_receive_and_send(in<in<u32>> rx, out<in<u32>> tx) {
channel unused -> transferred;
sync {
transferred = get(rx);
put(tx, transferred);
}
}
comp value_sender(out<u32> tx) {
sync put(tx, 1337);
}
comp constructor() {
channel port_tx_forward -> port_rx_forward;
channel port_tx_backward -> port_rx_backward;
channel message_tx -> message_rx;
new port_send_and_receive(port_tx_forward, port_rx_backward, message_rx);
new port_receive_and_send(port_rx_forward, port_tx_backward);
new value_sender(message_tx);
}
", "constructor", no_args());
}
|