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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using com.robotraconteur.testing.TestService1;
using com.robotraconteur.testing.TestService2;
using com.robotraconteur.testing.TestService3;
using RobotRaconteur;
using System.Threading;
using System.IO;
using System.Threading.Tasks;
namespace RobotRaconteurNETTest
{
public class ServiceTestClient2
{
public void ConnectService(string url)
{
r = (testroot3)RobotRaconteurNode.s.ConnectService(url);
}
public void DisconnectService()
{
RobotRaconteurNode.s.DisconnectService(r);
}
testroot3 r;
public void RunFullTest(string url)
{
ConnectService(url);
RRAssert.AreEqual((int)r.testenum1_prop, (int)testenum1.anothervalue);
r.testenum1_prop = testenum1.hexval1;
r.get_o4();
TestWirePeekPoke();
AsyncTestWirePeekPoke();
TestEnums();
TestPods();
TestGenerators();
TestMemories();
TestNamedArrays();
TestNamedArrayMemories();
TestComplex();
TestComplexMemories();
TestNoLock();
TestBools();
TestBoolMemories();
TestExceptionParams();
DisconnectService();
}
public void TestWirePeekPoke()
{
TimeSpec ts;
int v = r.peekwire.PeekInValue(out ts);
RRAssert.AreEqual(v, 56295674);
TimeSpec ts2;
r.pokewire.PokeOutValue(75738265);
int v2 = r.pokewire.PeekOutValue(out ts2);
RRAssert.AreEqual(v2, 75738265);
var w = r.pokewire.Connect();
for (int i = 0; i < 3; i++)
{
w.OutValue = 8638356;
}
Thread.Sleep(100);
TimeSpec ts3;
var v3 = r.pokewire.PeekOutValue(out ts3);
RRAssert.AreEqual(v3, 8638356);
}
public void AsyncTestWirePeekPoke()
{
AsyncTestWirePeekPoke1().Wait();
}
public async Task AsyncTestWirePeekPoke1()
{
var v1 = await r.peekwire.AsyncPeekInValue();
RRAssert.AreEqual(v1.Item1, 56295674);
await r.pokewire.AsyncPokeOutValue(75738261);
var v3 = await r.pokewire.AsyncPeekOutValue();
RRAssert.AreEqual(v3.Item1, 75738261);
}
public void TestEnums()
{
RRAssert.AreEqual((int)r.testenum1_prop, (int)testenum1.anothervalue);
r.testenum1_prop = testenum1.hexval1;
}
public void TestPods()
{
/*var s1 = new testpod1();
ServiceTest2_pod.fill_testpod1(ref s1, 563921043);
ServiceTest2_pod.verify_testpod1(ref s1, 563921043);
var s1_m = RobotRaconteurNode.s.PackPodToArray(ref s1);
var s1_1 = RobotRaconteurNode.s.UnpackPodFromArray<testpod1>(s1_m);
ServiceTest2_pod.verify_testpod1(ref s1_1, 563921043);
var s2 = ServiceTest2_pod.fill_teststruct3(858362);
ServiceTest2_pod.verify_teststruct3(s2, 858362);
var s2_m = RobotRaconteurNode.s.PackStructure(s2);
var s2_1 = RobotRaconteurNode.s.UnpackStructure<teststruct3>(s2_m);
ServiceTest2_pod.verify_teststruct3(s2_1, 858362);*/
var p1 = r.testpod1_prop;
ServiceTest2_pod.verify_testpod1(ref p1, 563921043);
var p2 = new testpod1();
ServiceTest2_pod.fill_testpod1(ref p2, 85932659);
r.testpod1_prop = p2;
var f1 = r.testpod1_func2();
ServiceTest2_pod.verify_testpod1(ref f1, 95836295);
var f2 = new testpod1();
ServiceTest2_pod.fill_testpod1(ref f2, 29546592);
r.testpod1_func1(f2);
ServiceTest2_pod.verify_teststruct3(r.teststruct3_prop, 16483675);
r.teststruct3_prop = (ServiceTest2_pod.fill_teststruct3(858362));
}
public void TestGenerators()
{
var g = r.gen_func1();
var res = g.NextAll();
Console.WriteLine(res);
var g2 = r.gen_func1();
g2.Next();
g2.Abort();
try
{
g2.Next();
}
catch (OperationAbortedException)
{
Console.WriteLine("Operation aborted caught");
}
var g3 = r.gen_func1();
g3.Next();
g3.Close();
try
{
g3.Next();
}
catch (StopIterationException)
{
Console.WriteLine("Stop iteration caught");
}
var gen2 = r.gen_func4();
gen2.Next(new byte[] { 2, 3, 4 });
gen2.Close();
try
{
gen2.Next(new byte[] { 2, 3, 4 });
}
catch (StopIterationException)
{
Console.WriteLine("Stop iteration caught");
}
// Add tests that use TryNext for gen3 and gen4
var gen3 = r.gen_func1();
double gen3_res2;
var gen3_res = gen3.TryNext(out gen3_res2);
RRAssert.AreEqual(gen3_res, true);
gen3_res = gen3.TryNext(out gen3_res2);
gen3.Abort();
try
{
gen3_res = gen3.TryNext(out gen3_res2);
}
catch (OperationAbortedException)
{
Console.WriteLine("Operation aborted caught");
}
var gen4 = r.gen_func4();
byte[] gen4_res2;
var gen4_res = gen4.TryNext(new byte[] { 2, 3, 4 }, out gen4_res2);
RRAssert.AreEqual(gen4_res, true);
gen4.Close();
gen4_res = gen4.TryNext(new byte[] { 2, 3, 4 }, out gen4_res2);
RRAssert.AreEqual(gen4_res, false);
}
public void TestMemories()
{
test_m1();
test_m2();
}
public void test_m1()
{
testpod2[] o1 = new testpod2[32];
for (uint i = 0; i < o1.Length; i++)
{
ServiceTest2_pod.fill_testpod2(ref o1[i], 59174 + i);
}
RRAssert.AreEqual<ulong>(r.pod_m1.Length, 1024);
r.pod_m1.Write(52, o1, 3, 17);
testpod2[] o2 = new testpod2[32];
r.pod_m1.Read(53, o2, 2, 16);
for (uint i = 2; i < 16; i++)
{
ServiceTest2_pod.verify_testpod2(ref o2[i], 59174 + i + 2);
}
}
public void test_m2()
{
PodMultiDimArray s = new PodMultiDimArray(new uint[] { 3, 3 }, new testpod2[9]);
for (uint i = 0; i < s.pod_array.Length; i++)
{
ServiceTest2_pod.fill_testpod2(ref((testpod2[])s.pod_array)[i], 75721 + i);
}
r.pod_m2.Write(new ulong[] { 0, 0 }, s, new ulong[] { 0, 0 }, new ulong[] { 3, 3 });
PodMultiDimArray s2 = new PodMultiDimArray(new uint[] { 3, 3 }, new testpod2[9]);
r.pod_m2.Read(new ulong[] { 0, 0 }, s2, new ulong[] { 0, 0 }, new ulong[] { 3, 3 });
for (uint i = 0; i < s2.pod_array.Length; i++)
{
ServiceTest2_pod.verify_testpod2(ref((testpod2[])s2.pod_array)[i], 75721 + i);
}
}
public void TestNamedArrays()
{
var a1 = new transform();
ServiceTest2_pod.fill_transform(ref a1, 3956378);
r.testnamedarray1 = a1.translation;
var a1_1 = new transform();
a1_1.rotation = a1.rotation;
a1_1.translation = r.testnamedarray1;
var a1_2 = new transform();
ServiceTest2_pod.fill_transform(ref a1_2, 74637);
a1_1.rotation = a1_2.rotation;
ServiceTest2_pod.verify_transform(ref a1_1, 74637);
var a2 = new transform();
ServiceTest2_pod.fill_transform(ref a2, 827635);
r.testnamedarray2 = a2;
transform a2_1 = r.testnamedarray2;
ServiceTest2_pod.verify_transform(ref a2_1, 1294);
r.testnamedarray3 = ServiceTest2_pod.fill_transform_array(6, 19274);
ServiceTest2_pod.verify_transform_array(r.testnamedarray3, 8, 837512);
r.testnamedarray4 = ServiceTest2_pod.fill_transform_multidimarray(5, 2, 6385);
ServiceTest2_pod.verify_transform_multidimarray(r.testnamedarray4, 7, 2, 66134);
r.testnamedarray5 = ServiceTest2_pod.fill_transform_multidimarray(3, 2, 7732);
ServiceTest2_pod.verify_transform_multidimarray(r.testnamedarray5, 3, 2, 773142);
}
public void TestNamedArrayMemories()
{
test_namedarray_m1();
test_namedarray_m2();
}
public void test_namedarray_m1()
{
var s = new transform[32];
for (uint i = 0; i < s.Length; i++)
ServiceTest2_pod.fill_transform(ref s[i], 79174 + i);
RRAssert.AreEqual<ulong>(r.namedarray_m1.Length, 512);
r.namedarray_m1.Write(23, s, 3, 21);
var s2 = new transform[32];
r.namedarray_m1.Read(24, s2, 2, 18);
for (uint i = 2; i < 18; i++)
{
ServiceTest2_pod.verify_transform(ref s2[i], 79174 + i + 2);
}
}
public void test_namedarray_m2()
{
var s = new NamedMultiDimArray(new uint[] { 3, 3 }, new transform[9]);
var s_array = (transform[])s.namedarray_array;
for (uint i = 0; i < s.namedarray_array.Length; i++)
ServiceTest2_pod.fill_transform(ref s_array[i], 15721 + i);
r.namedarray_m2.Write(new ulong[] { 0, 0 }, s, new ulong[] { 0, 0 }, new ulong[] { 3, 3 });
var s2 = new NamedMultiDimArray(new uint[] { 3, 3 }, new transform[9]);
r.namedarray_m2.Read(new ulong[] { 0, 0 }, s2, new ulong[] { 0, 0 }, new ulong[] { 3, 3 });
var s2_array = (transform[])s2.namedarray_array;
for (uint i = 0; i < s2.namedarray_array.Length; i++)
ServiceTest2_pod.fill_transform(ref s2_array[i], 15721 + i);
}
public void ca<T>(T[] v1, T[] v2, int count = -1)
where T : IComparable, IComparable<T>
{
RRAssert.AreEqual(v1.Length, v2.Length);
int len = v1.Length;
if (count > 0)
len = count;
for (int i = 0; i < len; i++)
{
RRAssert.AreEqual(v1[i], v2[i]);
}
}
public void ca(CDouble[] v1, CDouble[] v2, int count = -1)
{
RRAssert.AreEqual(v1.Length, v2.Length);
int len = v1.Length;
if (count > 0)
len = count;
for (int i = 0; i < len; i++)
{
RRAssert.AreEqual((object)v1[i], (object)v2[i]);
}
}
public void ca(CSingle[] v1, CSingle[] v2, int count = -1)
{
RRAssert.AreEqual(v1.Length, v2.Length);
int len = v1.Length;
if (count > 0)
len = count;
for (int i = 0; i < len; i++)
{
RRAssert.AreEqual((object)v1[i], (object)v2[i]);
}
}
static CDouble[] ComplexFromScalars(double[] a)
{
var o = new CDouble[a.Length / 2];
for (int j = 0; j < o.Length; j++)
o[j] = new CDouble(a[j * 2], a[j * 2 + 1]);
return o;
}
static CSingle[] ComplexFromScalars(float[] a)
{
var o = new CSingle[a.Length / 2];
for (int j = 0; j < o.Length; j++)
o[j] = new CSingle(a[j * 2], a[j * 2 + 1]);
return o;
}
void TestComplex()
{
var c1_1 = new CDouble(5.708705e+01, -2.328294e-03);
RRAssert.AreEqual((object)r.c1, (object)c1_1);
var c1_2 = new CDouble(5.708705e+01, -2.328294e-03);
r.c1 = c1_2;
CDouble[] c2_1 = r.c2;
double[] c2_1_1 =
new double[] { 1.968551e+07, 2.380643e+18, 3.107374e-16, 7.249542e-16, -4.701135e-19, -6.092764e-17,
2.285854e+14, 2.776180e+05, -1.436152e-12, 3.626609e+11, 3.600952e-02, -3.118123e-16,
-1.312210e-10, -1.738940e-07, -1.476586e-12, -2.899781e-20, 4.806642e+03, 4.476869e-05,
-2.935084e-16, 3.114019e-20, -3.675955e+01, 3.779796e-21, 2.190594e-11, 4.251420e-06,
-9.715221e+11, -3.483924e-01, 7.606428e+05, 5.418088e+15, 4.786378e+16, -1.202581e+08,
-1.662061e+02, -2.392954e+03 };
ca(c2_1, ComplexFromScalars(c2_1_1));
double[] c2_2_1 =
new double[] { 4.925965e-03, 5.695254e+13, -4.576890e-14, -6.056342e-07, -4.918571e-08, -1.940684e-10,
1.549104e-02, -1.954145e+04, -2.499019e-16, 4.010614e+09, -1.906811e-08, 3.297924e-10,
2.742399e-02, -4.372839e-01, -3.093171e-10, 4.311755e-01, -2.218220e-14, 5.399758e+10,
3.360304e+17, 1.340681e-18, -4.441140e+11, -1.845055e-09, -3.074586e-10, -1.754926e+01,
-2.766799e+04, -2.307577e+10, 2.754875e+14, 1.179639e+15, 6.976204e-10, 1.901856e+08,
-3.824351e-02, -1.414167e+08 };
r.c2 = ComplexFromScalars(c2_2_1);
MultiDimArray c3_1 = r.c3;
uint[] c3_1_1 = new uint[] { 2, 5 };
double[] c3_1_2 = new double[] { 5.524802e+18, -2.443857e-05, 3.737932e-02, -4.883553e-03, -1.184347e+12,
4.537366e-08, -4.567913e-01, -1.683542e+15, -1.676517e+00, -8.911085e+12,
-2.537376e-17, 1.835687e-10, -9.366069e-22, -5.426323e-12, -7.820969e-10,
-1.061541e+12, -3.660854e-12, -4.969930e-03, 1.988428e+07, 1.860782e-16 };
ca(c3_1.Dims, c3_1_1);
ca((CDouble[])c3_1.Array_, ComplexFromScalars(c3_1_2));
uint[] c3_2_1 = new uint[] { 3, 4 };
double[] c3_2_2 =
new double[] { 4.435180e+04, 5.198060e-18, -1.316737e-13, -4.821771e-03, -4.077550e-19, -1.659105e-09,
-6.332363e-11, -1.128999e+16, 4.869912e+16, 2.680490e-04, -8.880119e-04, 3.960452e+11,
4.427784e-09, -2.813742e-18, 7.397516e+18, 1.196394e+13, 3.236906e-14, -4.219297e-17,
1.316282e-06, -2.771084e-18, -1.239118e-09, 2.887453e-08, -1.746515e+08, -2.312264e-11 };
r.c3 = new MultiDimArray(c3_2_1, ComplexFromScalars(c3_2_2));
List<CDouble[]> c5_1 = r.c5;
double[] c5_1_1 =
new double[] { 1.104801e+00, 4.871266e-10, -2.392938e-03, 4.210339e-07, 1.474114e-19, -1.147137e-01,
-2.026434e+06, 4.450447e-19, 3.702953e-21, 9.722025e+12, 3.464073e-14, 4.628110e+15,
2.345453e-19, 3.730012e-04, 4.116650e+16, 4.380220e+08 };
ca(c5_1[0], ComplexFromScalars(c5_1_1));
var c5_2 = new List<CDouble[]>();
double[] c5_2_1 = { 2.720831e-20, 2.853037e-16, -7.982497e+16, -2.684318e-09, -2.505796e+17, -4.743970e-12,
-3.657056e+11, 2.718388e+15, 1.597672e+03, 2.611859e+14, 2.224926e+06, -1.431096e-09,
3.699894e+19, -5.936706e-01, -1.385395e-09, -4.248415e-13 };
c5_2.Add(ComplexFromScalars(c5_2_1));
r.c5 = (c5_2);
var c7_1 = new CSingle(-5.527021e-18f, -9.848457e+03f);
RRAssert.AreEqual((object)r.c7, (object)c7_1);
var c7_2 = new CSingle(9.303345e-12f, -3.865684e-05f);
r.c7 = (c7_2);
var c8_1 = r.c8;
float[] c8_1_1 = new float[] { -3.153395e-09f, 3.829492e-02f, -2.665239e+12f, 1.592927e-03f, 3.188444e+06f,
-3.595015e-11f, 2.973887e-18f, -2.189921e+17f, 1.651567e+10f, 1.095838e+05f,
3.865249e-02f, 4.725510e+10f, -2.334376e+03f, 3.744977e-05f, -1.050821e+02f,
1.122660e-22f, 3.501520e-18f, -2.991601e-17f, 6.039622e-17f, 4.778095e-07f,
-4.793136e-05f, 3.096513e+19f, 2.476004e+18f, 1.296297e-03f, 2.165336e-13f,
4.834427e+06f, 4.675370e-01f, -2.942290e-12f, -2.090883e-19f, 6.674942e+07f,
-4.809047e-10f, -4.911772e-13f };
ca(c8_1, ComplexFromScalars(c8_1_1));
float[] c8_2_1 = new float[] { 1.324498e+06f, 1.341746e-04f, 4.292993e-04f, -3.844509e+15f, -3.804802e+10f,
3.785305e-12f, 2.628285e-19f, -1.664089e+15f, -4.246472e-10f, -3.334943e+03f,
-3.305796e-01f, 1.878648e-03f, 1.420880e-05f, -3.024657e+14f, 2.227031e-21f,
2.044653e+17f, 9.753609e-20f, -6.581817e-03f, 3.271063e-03f, -1.726081e+06f,
-1.614502e-06f, -2.641638e-19f, -2.977317e+07f, -1.278224e+03f, -1.760207e-05f,
-4.877944e-07f, -2.171524e+02f, 1.620645e+01f, -4.334168e-02f, 1.871011e-09f,
-3.066163e+06f, -3.533662e+07f };
r.c8 = ComplexFromScalars(c8_2_1);
var c9_1 = r.c9;
uint[] c9_1_1 = new uint[] { 2, 4 };
float[] c9_1_2 =
new float[] { 1.397743e+15f, 3.933042e+10f, -3.812329e+07f, 1.508109e+16f, -2.091397e-20f, 3.207851e+12f,
-3.640702e+02f, 3.903769e+02f, -2.879727e+17f, -4.589604e-06f, 2.202769e-06f, 2.892523e+04f,
-3.306489e-14f, 4.522308e-06f, 1.665807e+15f, 2.340476e+10f };
ca(c9_1.Dims, c9_1_1);
ca((CSingle[])c9_1.Array_, ComplexFromScalars(c9_1_2));
uint[] c9_2_1 = new uint[] { 2, 2, 2 };
float[] c9_2_2 =
new float[] { 2.138322e-03f, 4.036979e-21f, 1.345236e+10f, -1.348460e-12f, -3.615340e+12f, -2.911340e-21f,
3.220362e+09f, 3.459909e-04f, 4.276259e-08f, -3.199451e+18f, 3.468308e+07f, -2.928506e-09f,
-3.154288e+17f, -2.352920e-02f, 6.976385e-21f, 2.435472e+12f };
r.c9 = new MultiDimArray(c9_2_1, ComplexFromScalars(c9_2_2));
}
void TestComplexMemories()
{
var c_m1_1 =
new double[] { 8.952764e-05, 4.348213e-04, -1.051215e+08, 1.458626e-09, -2.575954e+10, 2.118740e+03,
-2.555026e-02, 2.192576e-18, -2.035082e+18, 2.951834e-09, -1.760731e+15, 4.620903e-11,
-3.098798e+05, -8.883556e-07, 2.472289e+17, 7.059075e-12 };
r.c_m1.Write(10, ComplexFromScalars(c_m1_1), 0, 8);
var c_m1_3 = new CDouble[8];
r.c_m1.Read(10, c_m1_3, 0, 8);
ca(ComplexFromScalars(c_m1_1), c_m1_3, 8);
var z = new ulong[] { 0, 0 };
var c = new ulong[] { 3, 3 };
var c_m2_1 = new uint[] { 3, 3 };
var c_m2_2 =
new double[] { -4.850043e-03, 3.545429e-07, 2.169430e+12, 1.175943e-09, 2.622300e+08, -4.439823e-11,
-1.520489e+17, 8.250078e-14, 3.835439e-07, -1.424709e-02, 3.703099e+08, -1.971111e-08,
-2.805354e+01, -2.093850e-17, -4.476148e+19, 9.914350e+11, 2.753067e+08, -1.745041e+14 };
var c_m2_3 = new MultiDimArray(c_m2_1, ComplexFromScalars(c_m2_2));
r.c_m2.Write(z, c_m2_3, z, c);
var c_m2_4 = new MultiDimArray(c_m2_1, new CDouble[9]);
r.c_m2.Read(z, c_m2_4, z, c);
ca(c_m2_3.Dims, c_m2_4.Dims);
ca((CDouble[])c_m2_3.Array_, (CDouble[])c_m2_4.Array_);
}
private static void a(double b)
{}
private static void a(ulong b)
{}
void TestNoLock()
{
var o5 = r.get_nolock_test();
RRAssert.ThrowsException<ObjectLockedException>(() => a(o5.p1));
a(o5.p2);
o5.p2 = 0;
a(o5.p3);
RRAssert.ThrowsException<ObjectLockedException>(() => o5.p3 = 0);
RRAssert.ThrowsException<ObjectLockedException>(() => o5.f1());
o5.f2();
RRAssert.ThrowsException<ObjectLockedException>(() => o5.q1.Connect(-1).Close());
o5.q2.Connect(-1).Close();
RRAssert.ThrowsException<ObjectLockedException>(() => o5.w1.Connect().Close());
o5.w2.Connect().Close();
RRAssert.ThrowsException<ObjectLockedException>(() => a(o5.m1.Length));
var b1 = new int[100];
a(o5.m2.Length);
o5.m2.Read(0, b1, 0, 10);
o5.m2.Write(0, b1, 0, 10);
a(o5.m3.Length);
o5.m3.Read(0, b1, 0, 10);
RRAssert.ThrowsException<ObjectLockedException>(() => o5.m3.Write(0, b1, 0, 10));
}
void TestBools()
{
r.b1 = true;
RRAssert.AreEqual(r.b1, true);
r.b2 = new bool[] { true, false, false, true, true, true, false, true };
ca(r.b2, new bool[] { true, false, true, true, false, true, false });
var b3_1 = r.b3;
ca(b3_1.Dims, new uint[] { 2, 2 });
ca((bool[])b3_1.Array_, new bool[] { false, true, true, false });
r.b3 = new MultiDimArray(new uint[] { 2, 1 }, new bool[] { true, false });
var b4_1 = r.b4;
RRAssert.AreEqual(b4_1[0], true);
var b4_2 = new List<bool>();
b4_2.Add(true);
r.b4 = b4_2;
var b5_1 = r.b5;
ca(b5_1[0], new bool[] { false, true, false, false });
var b5_2 = new List<bool[]>();
b5_2.Add(new bool[] { true, false });
r.b5 = b5_2;
var b6_1 = r.b6;
ca(b6_1[0].Dims, new uint[] { 2, 2 });
ca((bool[])b6_1[0].Array_, new bool[] { false, true, true, false });
r.b6 = new List<MultiDimArray>() { new MultiDimArray(new uint[] { 2, 1 }, new bool[] { true, false }) };
}
void TestBoolMemories()
{
var c_m5 = r.c_m5;
bool[] v1_1 = { true, false, false, true, true, false, false, false, true, true };
c_m5.Write(100, v1_1, 1, 8);
var v2 = new bool[10];
c_m5.Read(99, v2, 0, 10);
for (int i = 1; i < 9; i++)
{
RRAssert.AreEqual(v2[i], v1_1[i]);
}
var c_m6 = r.c_m6;
var v3 = new MultiDimArray(new uint[] { 2, 5 }, v1_1);
c_m6.Write(new ulong[] { 0, 0 }, v3, new ulong[] { 0, 0 }, new ulong[] { 2, 5 });
var v4 = new MultiDimArray(new uint[] { 2, 5 }, new bool[10]);
c_m6.Read(new ulong[] { 0, 0 }, v4, new ulong[] { 0, 0 }, new ulong[] { 2, 5 });
ca(v3.Dims, v4.Dims);
ca((bool[])v3.Array_, (bool[])v4.Array_);
}
private void TestExceptionParams()
{
bool exp1_caught = false;
try
{
r.test_exception_params1();
}
catch (InvalidOperationException exp)
{
exp1_caught = true;
RRAssert.AreEqual(exp.Message, "test error");
RRAssert.AreEqual((string)exp.Data["ErrorSubName"], "my_error");
RRAssert.AreNotEqual(exp.Data["ErrorParam"], null);
var param_map = (Dictionary<string, object>)(exp.Data["ErrorParam"]);
RRAssert.AreEqual(param_map.Count, 2);
RRAssert.AreEqual(((int[])param_map["param1"])[0], 10);
RRAssert.AreEqual((string)param_map["param2"], "20");
}
RRAssert.IsTrue(exp1_caught);
bool exp2_caught = false;
try
{
r.test_exception_params2();
}
catch (com.robotraconteur.testing.TestService3.test_exception4 exp)
{
exp2_caught = true;
RRAssert.AreEqual(exp.Message, "test error2");
RRAssert.AreEqual((string)exp.ErrorSubName, "my_error2");
RRAssert.AreNotEqual(exp.ErrorParam, null);
var param_map = (Dictionary<string, object>)(exp.ErrorParam);
RRAssert.AreEqual(param_map.Count, 2);
RRAssert.AreEqual(((int[])param_map["param1"])[0], 30);
RRAssert.AreEqual((string)param_map["param2"], "40");
}
RRAssert.IsTrue(exp2_caught);
}
}
}
|