Files
@ b7d434ab8020
Branch filter:
Location: CSY/reowolf/src/runtime2/tests/transfer_ports.rs
b7d434ab8020
4.7 KiB
application/rls-services+xml
Remove distinction between primitive/composite components
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 | use super::*;
#[test]
fn test_transfer_precreated_port_with_owned_peer() {
compile_and_create_component("
primitive port_sender(out<in<u32>> tx) {
channel a -> b;
sync put(tx, b);
}
primitive port_receiver(in<in<u32>> rx) {
sync auto a = get(rx);
}
composite constructor() {
channel a -> b;
new port_sender(a);
new port_receiver(b);
}
", "constructor", no_args());
}
#[test]
fn test_transfer_precreated_port_with_foreign_peer() {
compile_and_create_component("
primitive port_sender(out<in<u32>> tx, in<u32> to_send) {
sync put(tx, to_send);
}
primitive port_receiver(in<in<u32>> rx) {
sync auto a = get(rx);
}
composite 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("
primitive port_sender(out<in<u32>> tx) {
sync {
channel a -> b;
put(tx, b);
}
}
primitive port_receiver(in<in<u32>> rx) {
sync auto a = get(rx);
}
composite 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("
primitive port_sender(out<in<u32>> tx) {
channel a -> b;
sync put(tx, b);
sync put(a, 1337);
}
primitive 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) {}
}
composite 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("
primitive port_sender(out<in<u32>> tx, in<u32> to_send) {
sync put(tx, to_send);
}
primitive message_transmitter(out<u32> tx) {
sync put(tx, 1337);
}
primitive port_receiver(in<in<u32>> rx) {
channel unused -> b;
sync b = get(rx);
u32 value = 0;
sync value = get(b);
while (value != 1337) {}
}
composite 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("
primitive port_send_and_receive(out<in<u32>> tx, in<in<u32>> rx) {
channel a -> b;
sync {
put(tx, b);
b = get(rx);
}
}
primitive 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);
}
}
composite 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("
primitive 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) {}
}
}
primitive port_receive_and_send(in<in<u32>> rx, out<in<u32>> tx) {
channel unused -> transferred;
sync {
transferred = get(rx);
put(tx, transferred);
}
}
primitive value_sender(out<u32> tx) {
sync put(tx, 1337);
}
composite 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());
}
|