rsspice 0.1.0

Pure Rust port of the SPICE Toolkit for space geometry
Documentation
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
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
//
// GENERATED FILE
//

use super::*;
use f2rust_std::*;

const FTSIZE: i32 = 5000;
const NWD: i32 = 128;
const NWI: i32 = 256;
const NWC: i32 = 1024;
const CHARDT: i32 = 1;
const DPDT: i32 = 2;
const INTDT: i32 = 3;
const DASC1: &[u8] = b"test_char.das";
const DASD1: &[u8] = b"test_dp.das";
const DASTE1: &[u8] = b"test_corrupt.das";
const DASI1: &[u8] = b"test_int.das";
const WBRTST: &[u8] = b"test_daswbr.das";
const CHRLEN: i32 = 50;
const CSTRLN: i32 = 2048;
const DBUFSZ: i32 = 30;
const FTYPLN: i32 = 3;
const IBUFSZ: i32 = 20;
const MNSUBS: i32 = 10;
const MXNDAT: i32 = 100;

struct SaveVars {
    FTYPE: Vec<u8>,
    NCALL: i32,
    NCOMR: i32,
    NPASS: i32,
    XLSTLA: StackArray<i32, 3>,
    XLSTRC: StackArray<i32, 3>,
    XLSTWD: StackArray<i32, 3>,
}

impl SaveInit for SaveVars {
    fn new() -> Self {
        let mut FTYPE = vec![b' '; FTYPLN as usize];
        let mut NCALL: i32 = 0;
        let mut NCOMR: i32 = 0;
        let mut NPASS: i32 = 0;
        let mut XLSTLA = StackArray::<i32, 3>::new(1..=3);
        let mut XLSTRC = StackArray::<i32, 3>::new(1..=3);
        let mut XLSTWD = StackArray::<i32, 3>::new(1..=3);

        fstr::assign(&mut FTYPE, b"ANG");
        NCALL = 1000;
        NCOMR = 10;
        NPASS = 3;
        {
            use f2rust_std::data::Val;

            let mut clist = [Val::I(4), Val::I(5), Val::I(10)].into_iter();
            XLSTLA
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = [Val::I(202), Val::I(202), Val::I(202)].into_iter();
            XLSTRC
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = [Val::I(10), Val::I(11), Val::I(12)].into_iter();
            XLSTWD
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }

        Self {
            FTYPE,
            NCALL,
            NCOMR,
            NPASS,
            XLSTLA,
            XLSTRC,
            XLSTWD,
        }
    }
}

//$Procedure F_DAS ( Test subset of DAS routines )
pub fn F_DAS(OK: &mut bool, ctx: &mut Context) -> f2rust_std::Result<()> {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    let mut ACCESS = [b' '; 5 as usize];
    let mut CDATA = ActualCharArray::new(CSTRLN, 1..=MNSUBS);
    let mut CHRBUF = [b' '; CHRLEN as usize];
    let mut RCDATA = ActualCharArray::new(CSTRLN, 1..=MNSUBS);
    let mut UCDATA = ActualCharArray::new(CSTRLN, 1..=MNSUBS);
    let mut XCHRBF = [b' '; CHRLEN as usize];
    let mut DDATA = StackArray::<f64, 100>::new(1..=MXNDAT);
    let mut DPBUF = StackArray::<f64, 30>::new(1..=DBUFSZ);
    let mut RDDATA = StackArray::<f64, 100>::new(1..=MXNDAT);
    let mut UDDATA = StackArray::<f64, 100>::new(1..=MXNDAT);
    let mut XDPBUF = StackArray::<f64, 30>::new(1..=DBUFSZ);
    let mut BPOS: i32 = 0;
    let mut EPOS: i32 = 0;
    let mut FIRST: i32 = 0;
    let mut FIRSTC: i32 = 0;
    let mut FIRSTD: i32 = 0;
    let mut FIRSTI: i32 = 0;
    let mut FREE: i32 = 0;
    let mut HANDLE: i32 = 0;
    let mut HANDL1: i32 = 0;
    let mut IDATA = StackArray::<i32, 100>::new(1..=MXNDAT);
    let mut INTBUF = StackArray::<i32, 20>::new(1..=IBUFSZ);
    let mut LAST: i32 = 0;
    let mut LASTC: i32 = 0;
    let mut LASTD: i32 = 0;
    let mut LASTI: i32 = 0;
    let mut LASTLA = StackArray::<i32, 3>::new(1..=3);
    let mut LASTRC = StackArray::<i32, 3>::new(1..=3);
    let mut LASTWD = StackArray::<i32, 3>::new(1..=3);
    let mut N: i32 = 0;
    let mut NCOMC: i32 = 0;
    let mut NRESVC: i32 = 0;
    let mut NRESVR: i32 = 0;
    let mut RIDATA = StackArray::<i32, 100>::new(1..=MXNDAT);
    let mut UIDATA = StackArray::<i32, 100>::new(1..=MXNDAT);
    let mut XINTBF = StackArray::<i32, 20>::new(1..=IBUFSZ);

    //
    // Local Parameters
    //

    //
    // Local Variables
    //

    //
    // Saved variables.
    //

    //
    // Initial values, used in the DASWBR/DASLLC test
    //

    //
    // Expected values for DASHFS test
    //

    //
    // Open the test family.
    //
    testutil::TOPEN(b"F_DAS", ctx)?;

    //
    // Start the test family from a clean state. Remove all
    // existing test das files.
    //
    testutil::KILFIL(DASD1, ctx)?;
    testutil::KILFIL(DASTE1, ctx)?;
    testutil::KILFIL(DASI1, ctx)?;
    testutil::KILFIL(WBRTST, ctx)?;

    //
    // *****************************************************************
    //
    // DASHAM error cases: try negative and zero handles when no DAS
    // file has yet been opened. Other error cases will be handled
    // while testing other routines.
    //
    // *****************************************************************
    //
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASHAM error case 1: Verify that DASHAM returns an error if we try to get the access type of a non existing (negative) handle.", ctx)?;

    spicelib::DASHAM(-1, &mut ACCESS, ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDHANDLE)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    // This is a special error case, as the value Zero is used in the
    // initialization of the internal pointers and pools.
    //
    testutil::TCASE(b"DASHAM error case 2: Verify that DASHAM returns an error if we try to get the access type of a non existing (zero) handle.", ctx)?;

    spicelib::DASHAM(0, &mut ACCESS, ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDHANDLE)", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASADC normal cases:
    //
    // *****************************************************************
    //
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADC normal case 1: Number of characters to add to DAS file is negative.",
        ctx,
    )?;

    testutil::KILFIL(DASC1, ctx)?;

    spicelib::DASONW(DASC1, b"TEST", DASC1, 0, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    N = -1;
    BPOS = 10;
    EPOS = 20;

    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Check the file summary. Before calling DASADC, we have
    //
    //    FREE   = 3
    //    LASTLA = 0
    //    LASTRC = 0
    //    LASTWD = 0
    //
    // Since the DASADC has written no characters words, the
    // result should be the same.
    //
    spicelib::DASHFS(
        HANDLE,
        &mut NRESVR,
        &mut NRESVC,
        &mut save.NCOMR,
        &mut NCOMC,
        &mut FREE,
        LASTLA.as_slice_mut(),
        LASTRC.as_slice_mut(),
        LASTWD.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSI(b"FREE", FREE, b"=", 3, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTLA", LASTLA[CHARDT], b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTRC", LASTRC[CHARDT], b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTWD", LASTWD[CHARDT], b"=", 0, 0, OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASONW+DASHAM normal case: Verify that DASHAM returns the right access mode: READ",
        ctx,
    )?;

    spicelib::DASHAM(HANDLE, &mut ACCESS, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSC(b"ACCESS", &ACCESS, b"=", b"READ", OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASHAM error case 3: Verify that DASHAM returns an error if we try to get the access type of a file that has been closed.", ctx)?;

    spicelib::DASHAM(HANDLE, &mut ACCESS, ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDHANDLE)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    // Create a new DAS file, and write less than 1024 characters
    // from a single string.
    //
    testutil::TCASE(
        b"DASADC normal case 1: write less than 1024 characters from a single string.",
        ctx,
    )?;

    testutil::KILFIL(DASC1, ctx)?;

    spicelib::DASONW(DASC1, b"TEST", DASC1, 0, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(
        CDATA.get_mut(1),
        b"0123456789012345678901234567890123456789",
    );
    fstr::assign(fstr::substr_mut(CDATA.get_mut(1), 1023..=1023), b"-");

    N = 1023;
    BPOS = 1;
    EPOS = N;

    //
    // Write the character data to the DAS file.
    //
    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Check the file summary. Before calling DASADC, we have
    //
    //    FREE   = 3
    //    LASTLA = 0
    //
    // After calling DASADC, we should have
    //
    //    FREE   = 4
    //    LASTLA = 1023
    //
    spicelib::DASHFS(
        HANDLE,
        &mut NRESVR,
        &mut NRESVC,
        &mut save.NCOMR,
        &mut NCOMC,
        &mut FREE,
        LASTLA.as_slice_mut(),
        LASTRC.as_slice_mut(),
        LASTWD.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSI(b"FREE", FREE, b"=", 4, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTLA", LASTLA[CHARDT], b"=", 1023, 0, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    // Create a new DAS file, and write exactly 1024 characters
    // from a single string.
    //
    testutil::TCASE(
        b"DASADC normal case 2: write 1024 characters from a single string.",
        ctx,
    )?;

    testutil::KILFIL(DASC1, ctx)?;

    spicelib::DASONW(DASC1, b"TEST", DASC1, 0, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(
        CDATA.get_mut(1),
        b"0123456789012345678901234567890123456789",
    );
    fstr::assign(fstr::substr_mut(CDATA.get_mut(1), 1023..=1024), b"--");

    N = 1024;
    BPOS = 1;
    EPOS = N;

    //
    // Write the character data to the DAS file.
    //
    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Check the file summary. Before calling DASADC, we have
    //
    //    FREE   = 3
    //    LASTLA = 0
    //
    // After calling DASADC, we should have
    //
    //    FREE   = 4
    //    LASTLA = 1024
    //
    spicelib::DASHFS(
        HANDLE,
        &mut NRESVR,
        &mut NRESVC,
        &mut save.NCOMR,
        &mut NCOMC,
        &mut FREE,
        LASTLA.as_slice_mut(),
        LASTRC.as_slice_mut(),
        LASTWD.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSI(b"FREE", FREE, b"=", 4, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTLA", LASTLA[CHARDT], b"=", 1024, 0, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    // Create a new DAS file, and write more than 1024 characters
    // from a single string.
    //
    testutil::TCASE(
        b"DASADC normal case 2: write more than 1024 characters from a single string.",
        ctx,
    )?;

    testutil::KILFIL(DASC1, ctx)?;

    spicelib::DASONW(DASC1, b"TEST", DASC1, 0, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(
        CDATA.get_mut(1),
        b"0123456789012345678901234567890123456789",
    );
    fstr::assign(fstr::substr_mut(CDATA.get_mut(1), 1023..=1025), b"---");

    N = 1025;
    BPOS = 1;
    EPOS = N;

    //
    // Write the character data to the DAS file.
    //
    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Check the file summary. Before calling DASADC, we have
    //
    //    FREE   = 3
    //    LASTLA = 0
    //
    // After calling DASADC, we should have
    //
    //    FREE   = 5
    //    LASTLA = 1025
    //
    spicelib::DASHFS(
        HANDLE,
        &mut NRESVR,
        &mut NRESVC,
        &mut save.NCOMR,
        &mut NCOMC,
        &mut FREE,
        LASTLA.as_slice_mut(),
        LASTRC.as_slice_mut(),
        LASTWD.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSI(b"FREE", FREE, b"=", 5, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTLA", LASTLA[CHARDT], b"=", 1025, 0, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASADC and DASRDC normal cases:
    //
    // *****************************************************************
    //
    //
    // --- Case: -------------------------------------------------------
    //
    // Create a new DAS file, and write 121 characters to it. Read the
    // newly created file and check that everything is as expected.
    //
    testutil::TCASE(b"DASADC and DASRDC normal case 1: write 121 characters from 40-characters substrings and read them.", ctx)?;

    //
    // Open a new DAS file.
    //
    testutil::KILFIL(DASC1, ctx)?;

    spicelib::DASONW(DASC1, b"TEST", DASC1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(
        CDATA.get_mut(1),
        b"0123456789012345678901234567890123456789",
    );
    fstr::assign(
        CDATA.get_mut(2),
        b"0123456789012345678901234567890123456789",
    );
    fstr::assign(
        CDATA.get_mut(3),
        b"0123456789012345678901234567890123456789",
    );
    fstr::assign(
        CDATA.get_mut(4),
        b"9999999999999999999999999999999999999999",
    );
    N = 121;
    BPOS = 1;
    EPOS = 40;
    FIRST = 1;
    LAST = N;

    //
    // Write the character data to the DAS file.
    //
    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read the data from the DAS file. First clear the RCDATA
    // and update the CDATA(4) string to the expected one.
    //
    spicelib::CLEARC(4, RCDATA.as_arg_mut());
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(CDATA.get_mut(4), b"9");

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, RCDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAC(b"RCDATA", RCDATA.as_arg(), b"=", CDATA.as_arg(), 4, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    // Create a new DAS file, and write 120 characters to it. Read the
    // newly created file and check that everything is as expected.
    //
    testutil::TCASE(
        b"DASADC and DASRDC normal case 2: write 120 characters and read them.",
        ctx,
    )?;

    //
    // Open a new DAS file.
    //
    testutil::KILFIL(DASC1, ctx)?;

    spicelib::DASONW(DASC1, b"TEST", DASC1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(
        CDATA.get_mut(1),
        b"0123456789012345678901234567890123456789",
    );
    fstr::assign(
        CDATA.get_mut(2),
        b"0123456789012345678901234567890123456789",
    );
    fstr::assign(
        CDATA.get_mut(3),
        b"0123456789012345678901234567890123456789",
    );
    N = 120;
    BPOS = 1;
    EPOS = 40;
    FIRST = 1;
    LAST = N;

    //
    // Write the character data to the DAS file.
    //
    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read the data from the DAS file. First clear the RCDATA
    //
    spicelib::CLEARC(3, RCDATA.as_arg_mut());
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, RCDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAC(b"RCDATA", RCDATA.as_arg(), b"=", CDATA.as_arg(), 3, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASUDC normal cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    // Update an existing DAS.
    //
    testutil::TCASE(
        b"DASUDC normal case 1: update existing DAS character strings.",
        ctx,
    )?;

    //
    // Open the DAS file created in the normal case for DASADC/DASRDC
    // to update some of the character addresses. Set the expected
    // updated character string in CDATA(1)
    //
    spicelib::DASOPW(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(UCDATA.get_mut(1), b"11111");
    fstr::assign(UCDATA.get_mut(2), b"22222");
    fstr::assign(
        CDATA.get_mut(1),
        b"0123456789111112222201234567890123456789",
    );
    FIRST = 11;
    LAST = 20;
    BPOS = 1;
    EPOS = 5;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, UCDATA.as_arg(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read the data from the DAS file. First clear the RCDATA
    //
    spicelib::CLEARC(3, RCDATA.as_arg_mut());
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    FIRST = 1;
    LAST = N;
    BPOS = 1;
    EPOS = 40;

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, RCDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAC(b"RCDATA", RCDATA.as_arg(), b"=", CDATA.as_arg(), 3, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    // Update an existing DAS.
    //
    testutil::TCASE(
        b"DASUDC normal case 2: update existing DAS character strings. Only one character.",
        ctx,
    )?;

    //
    // Open the DAS file created in the normal case for DASADC/DASRDC
    // to update some of the character addresses. Set the expected
    // updated character string in CDATA(1)
    //
    spicelib::DASOPW(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(UCDATA.get_mut(1), b"19");
    fstr::assign(UCDATA.get_mut(2), b"22222");
    fstr::assign(
        CDATA.get_mut(1),
        b"0923456789111112222201234567890123456789",
    );
    FIRST = 2;
    LAST = 2;
    BPOS = 2;
    EPOS = 2;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, UCDATA.as_arg(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read the data from the DAS file. First clear the RCDATA
    //
    spicelib::CLEARC(3, RCDATA.as_arg_mut());
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    FIRST = 1;
    LAST = N;
    BPOS = 1;
    EPOS = 40;

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, RCDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAC(b"RCDATA", RCDATA.as_arg(), b"=", CDATA.as_arg(), 3, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASADD normal cases:
    //
    // *****************************************************************
    //
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADD normal case 1: Number of double precision numbers to add to DAS file is negative.",
        ctx,
    )?;

    testutil::KILFIL(DASD1, ctx)?;

    spicelib::DASONW(DASD1, b"TEST", DASD1, 0, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    N = -1;

    spicelib::DASADD(HANDLE, N, DDATA.as_slice(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASD1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Check the file summary. Before calling DASADD, we have
    //
    //    FREE   = 3
    //    LASTLA = 0
    //    LASTRC = 0
    //    LASTWD = 0
    //
    // Since the DASADD has written no double precision words, the
    // result should be the same.
    //
    spicelib::DASHFS(
        HANDLE,
        &mut NRESVR,
        &mut NRESVC,
        &mut save.NCOMR,
        &mut NCOMC,
        &mut FREE,
        LASTLA.as_slice_mut(),
        LASTRC.as_slice_mut(),
        LASTWD.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSI(b"FREE", FREE, b"=", 3, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTLA", LASTLA[DPDT], b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTRC", LASTRC[DPDT], b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTWD", LASTWD[DPDT], b"=", 0, 0, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASADD and DASRDD normal cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    // Create a new DAS file, and write 100 double precision numbers to
    // it. Read the newly created file and check that everything is as
    // expected.
    //
    testutil::TCASE(
        b"DASADD and DASRDD normal case: write 100 double precision numbers and read them.",
        ctx,
    )?;

    //
    // Open a new DAS file.
    //
    testutil::KILFIL(DASD1, ctx)?;

    spicelib::DASONW(DASD1, b"TEST", DASD1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    N = 100;
    FIRST = 1;
    LAST = N;

    for I in 1..=N {
        DDATA[I] = (I as f64);
    }

    //
    // Write the double precision data to the DAS file.
    //
    spicelib::DASADD(HANDLE, N, DDATA.as_slice(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASD1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read the data from the DAS file.
    //
    spicelib::DASRDD(HANDLE, FIRST, LAST, RDDATA.as_slice_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAD(
        b"RDDATA",
        RDDATA.as_slice(),
        b"=",
        DDATA.as_slice(),
        N,
        0.0,
        OK,
        ctx,
    )?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASUDD normal cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    // Update an existing DAS.
    //
    testutil::TCASE(
        b"DASUDD normal case: update existing DAS double precision numbers.",
        ctx,
    )?;

    //
    // Open the DAS file created in the normal case for DASADD/DASRDD
    // to update some of the double precision addresses. Set the
    // expected updated sequence of double precision data in DDATA.
    //
    spicelib::DASOPW(DASD1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    FIRST = 11;
    LAST = 20;

    for I in 1..=10 {
        UDDATA[I] = -99.0;
        DDATA[(10 + I)] = UDDATA[I];
    }

    spicelib::DASUDD(HANDLE, FIRST, LAST, UDDATA.as_slice(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASD1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read the data from the DAS file.
    //
    FIRST = 1;
    LAST = 100;

    spicelib::DASRDD(HANDLE, FIRST, LAST, RDDATA.as_slice_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAD(
        b"RDDATA",
        RDDATA.as_slice(),
        b"=",
        DDATA.as_slice(),
        N,
        0.0,
        OK,
        ctx,
    )?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASRDD normal case:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASRDD normal case: read the newly created DAS file with FIRST greater than LAST. DATA shall not be changed.", ctx)?;

    //
    // Open the file again for reading.
    //
    spicelib::DASOPR(DASD1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Clear both DDATA and RDDATA.
    //
    spicelib::CLEARD(MXNDAT, DDATA.as_slice_mut());
    spicelib::CLEARD(MXNDAT, RDDATA.as_slice_mut());

    FIRST = 10;
    LAST = 9;

    spicelib::DASRDD(HANDLE, FIRST, LAST, RDDATA.as_slice_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAD(
        b"RDDATA",
        RDDATA.as_slice(),
        b"=",
        DDATA.as_slice(),
        MXNDAT,
        0.0,
        OK,
        ctx,
    )?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASADI normal cases:
    //
    // *****************************************************************
    //
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADI normal case 1: Number of integer numbers to add to DAS file is negative.",
        ctx,
    )?;

    testutil::KILFIL(DASI1, ctx)?;

    spicelib::DASONW(DASI1, b"TEST", DASI1, 0, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    N = -1;

    spicelib::DASADI(HANDLE, N, IDATA.as_slice(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASI1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Check the file summary. Before calling DASADI, we have
    //
    //    FREE   = 3
    //    LASTLA = 0
    //    LASTRC = 0
    //    LASTWD = 0
    //
    // Since the DASADI has written no integer words, the
    // result should be the same.
    //
    spicelib::DASHFS(
        HANDLE,
        &mut NRESVR,
        &mut NRESVC,
        &mut save.NCOMR,
        &mut NCOMC,
        &mut FREE,
        LASTLA.as_slice_mut(),
        LASTRC.as_slice_mut(),
        LASTWD.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSI(b"FREE", FREE, b"=", 3, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTLA", LASTLA[INTDT], b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTRC", LASTRC[INTDT], b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTWD", LASTWD[INTDT], b"=", 0, 0, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASADI and DASRDI normal cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    // Create a new DAS file, and write 100 integer numbers to it.
    // Read the newly created file and check that everything is as
    // expected.
    //
    testutil::TCASE(
        b"DASADI and DASRDI normal case: write 100 integer numbers and read them.",
        ctx,
    )?;

    //
    // Open a new DAS file.
    //
    testutil::KILFIL(DASI1, ctx)?;

    spicelib::DASONW(DASI1, b"TEST", DASI1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    N = 100;
    FIRST = 1;
    LAST = N;

    for I in 1..=N {
        IDATA[I] = I;
    }

    //
    // Write the integer data to the DAS file.
    //
    spicelib::DASADI(HANDLE, N, IDATA.as_slice(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASI1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read the data from the DAS file.
    //
    spicelib::DASRDI(HANDLE, FIRST, LAST, RIDATA.as_slice_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAI(
        b"RIDATA",
        RIDATA.as_slice(),
        b"=",
        IDATA.as_slice(),
        N,
        OK,
        ctx,
    )?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASUDI normal cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    // Update an existing DAS.
    //
    testutil::TCASE(
        b"DASUDI normal case: update existing DAS integer numbers.",
        ctx,
    )?;

    //
    // Open the DAS file created in the normal case for DASADI/DASRDI
    // to update some of the integer addresses. Set the expected
    // updated sequence of integer data in IDATA.
    //
    spicelib::DASOPW(DASI1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    FIRST = 11;
    LAST = 20;

    for I in 1..=10 {
        UIDATA[I] = -99;
        IDATA[(10 + I)] = UIDATA[I];
    }

    spicelib::DASUDI(HANDLE, FIRST, LAST, UIDATA.as_slice(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it again for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPR(DASI1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read the data from the DAS file.
    //
    FIRST = 1;
    LAST = 100;

    spicelib::DASRDI(HANDLE, FIRST, LAST, RIDATA.as_slice_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAI(
        b"RIDATA",
        RIDATA.as_slice(),
        b"=",
        IDATA.as_slice(),
        N,
        OK,
        ctx,
    )?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASRDI normal case:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASRDI normal case: read the newly created DAS file with FIRST greater than LAST. DATA shall not be changed.", ctx)?;

    //
    // Open the file again for reading.
    //
    spicelib::DASOPR(DASI1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Clear both IDATA and RIDATA.
    //
    spicelib::CLEARI(MXNDAT, IDATA.as_slice_mut());
    spicelib::CLEARI(MXNDAT, RIDATA.as_slice_mut());

    FIRST = 10;
    LAST = 9;

    spicelib::DASRDI(HANDLE, FIRST, LAST, RIDATA.as_slice_mut(), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKAI(
        b"RIDATA",
        RIDATA.as_slice(),
        b"=",
        IDATA.as_slice(),
        MXNDAT,
        OK,
        ctx,
    )?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASHFS normal cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASHFS normal case: add character, integer, and double precision data and check the updated file summary.", ctx)?;

    //
    // Open a new DAS file.
    //
    testutil::KILFIL(WBRTST, ctx)?;

    spicelib::DASONW(WBRTST, &save.FTYPE, WBRTST, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    for I in 1..=10 {
        spicelib::DASADI(HANDLE, 1, &[I], ctx)?;
        testutil::CHCKXC(false, b" ", OK, ctx)?;
    }

    for I in 1..=5 {
        spicelib::DASADD(HANDLE, 1, &[(I as f64)], ctx)?;
        testutil::CHCKXC(false, b" ", OK, ctx)?;
    }

    spicelib::DASADC(HANDLE, 4, 1, 4, CharArray::from_ref(b"SPUD"), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Close the file and open it for reading.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    spicelib::DASOPR(WBRTST, &mut HANDLE, ctx)?;

    //
    // Obtain the file summary.
    //
    spicelib::DASHFS(
        HANDLE,
        &mut NRESVR,
        &mut NRESVC,
        &mut save.NCOMR,
        &mut NCOMC,
        &mut FREE,
        LASTLA.as_slice_mut(),
        LASTRC.as_slice_mut(),
        LASTWD.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSI(b"NRESVR", NRESVR, b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"NRESVC", NRESVC, b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"NCOMR", save.NCOMR, b"=", 200, 0, OK, ctx)?;
    testutil::CHCKSI(b"NCOMC", NCOMC, b"=", 0, 0, OK, ctx)?;
    testutil::CHCKSI(b"FREE", FREE, b"=", 206, 0, OK, ctx)?;
    testutil::CHCKAI(
        b"LASTLA",
        LASTLA.as_slice(),
        b"=",
        save.XLSTLA.as_slice(),
        3,
        OK,
        ctx,
    )?;
    testutil::CHCKAI(
        b"LASTRC",
        LASTRC.as_slice(),
        b"=",
        save.XLSTRC.as_slice(),
        3,
        OK,
        ctx,
    )?;
    testutil::CHCKAI(
        b"LASTWD",
        LASTWD.as_slice(),
        b"=",
        save.XLSTWD.as_slice(),
        3,
        OK,
        ctx,
    )?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASLLA normal cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASLLA normal case: add character, integer, and double precision data and check last logical addresses for each data type.", ctx)?;

    //
    // Open a new DAS file.
    //
    testutil::KILFIL(WBRTST, ctx)?;

    spicelib::DASONW(WBRTST, &save.FTYPE, WBRTST, save.NCOMR, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    for I in 1..=10 {
        spicelib::DASADI(HANDLE, 1, &[I], ctx)?;
        testutil::CHCKXC(false, b" ", OK, ctx)?;
    }

    for I in 1..=5 {
        spicelib::DASADD(HANDLE, 1, &[(I as f64)], ctx)?;
        testutil::CHCKXC(false, b" ", OK, ctx)?;
    }

    spicelib::DASADC(HANDLE, 4, 1, 4, CharArray::from_ref(b"SPUD"), ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Now check the logical address ranges.
    //
    spicelib::DASLLA(HANDLE, &mut LASTC, &mut LASTD, &mut LASTI, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    testutil::CHCKSI(b"LASTC", LASTC, b"=", 4, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTD", LASTD, b"=", 5, 0, OK, ctx)?;
    testutil::CHCKSI(b"LASTI", LASTI, b"=", 10, 0, OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASLLC and DASWBR normal cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASLLC and DASWBR normal case: adding character, integer, and double precision data in interleaved fashion.", ctx)?;

    //
    // Open a new DAS file.
    //
    testutil::KILFIL(WBRTST, ctx)?;

    spicelib::DASONW(WBRTST, &save.FTYPE, WBRTST, save.NCOMR, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Add data of character, integer, and double precision
    // types to the file in interleaved fashion. We'll add to
    // the file over NPASS "passes," in each of which we close
    // the file after writing.
    //
    for PASSNO in 1..=save.NPASS {
        if (PASSNO > 1) {
            spicelib::DASOPW(WBRTST, &mut HANDLE, ctx)?;
            testutil::CHCKXC(false, b" ", OK, ctx)?;
        }

        for I in 1..=save.NCALL {
            //
            // Add string data to the file.
            //
            fstr::assign(&mut CHRBUF, b"Character value #");
            spicelib::REPMI(&CHRBUF.clone(), b"#", I, &mut CHRBUF, ctx);
            testutil::CHCKXC(false, b" ", OK, ctx)?;

            fstr::assign(
                fstr::substr_mut(&mut CHRBUF, (CHRLEN - 3)..=CHRLEN),
                b"--->",
            );

            spicelib::DASADC(HANDLE, CHRLEN, 1, CHRLEN, CharArray::from_ref(&CHRBUF), ctx)?;
            testutil::CHCKXC(false, b" ", OK, ctx)?;

            //
            // Add double precision data to the file.
            //
            for J in 1..=DBUFSZ {
                DPBUF[J] = ((((100000000 * PASSNO) + (100 * I)) + J) as f64);
            }

            spicelib::DASADD(HANDLE, DBUFSZ, DPBUF.as_slice(), ctx)?;
            testutil::CHCKXC(false, b" ", OK, ctx)?;

            //
            // Add integer data to the file.
            //
            for J in 1..=IBUFSZ {
                INTBUF[J] = (((100000000 * PASSNO) + (100 * I)) + J);
            }

            spicelib::DASADI(HANDLE, IBUFSZ, INTBUF.as_slice(), ctx)?;
            testutil::CHCKXC(false, b" ", OK, ctx)?;
        }

        //
        // Write buffered data to the file.
        //
        spicelib::DASWBR(HANDLE, ctx)?;
        testutil::CHCKXC(false, b" ", OK, ctx)?;

        //
        // Close the file without segregating it.
        //
        spicelib::DASLLC(HANDLE, ctx)?;
        testutil::CHCKXC(false, b" ", OK, ctx)?;
    }

    //
    // Check file contents.
    //
    spicelib::DASOPR(WBRTST, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // Read data from the file; compare to expected values.
    //
    // Initialize end addresses.
    //
    LASTC = 0;
    LASTD = 0;
    LASTI = 0;

    for PASSNO in 1..=save.NPASS {
        for I in 1..=save.NCALL {
            //
            // Check string data.
            //
            fstr::assign(&mut XCHRBF, b"Character value #");
            spicelib::REPMI(&XCHRBF.clone(), b"#", I, &mut XCHRBF, ctx);
            testutil::CHCKXC(false, b" ", OK, ctx)?;

            fstr::assign(
                fstr::substr_mut(&mut XCHRBF, (CHRLEN - 3)..=CHRLEN),
                b"--->",
            );

            FIRSTC = (LASTC + 1);
            LASTC = (LASTC + CHRLEN);

            spicelib::DASRDC(
                HANDLE,
                FIRSTC,
                LASTC,
                1,
                CHRLEN,
                CharArrayMut::from_mut(&mut CHRBUF),
                ctx,
            )?;
            testutil::CHCKXC(false, b" ", OK, ctx)?;

            testutil::CHCKSC(&XCHRBF, &CHRBUF, b"=", &XCHRBF, OK, ctx)?;

            //
            // Check double precision data.
            //
            for J in 1..=DBUFSZ {
                XDPBUF[J] = ((((100000000 * PASSNO) + (100 * I)) + J) as f64);
            }

            FIRSTD = (LASTD + 1);
            LASTD = (LASTD + DBUFSZ);

            spicelib::DASRDD(HANDLE, FIRSTD, LASTD, DPBUF.as_slice_mut(), ctx)?;
            testutil::CHCKXC(false, b" ", OK, ctx)?;

            testutil::CHCKAD(
                b"XDPBUF",
                DPBUF.as_slice(),
                b"=",
                XDPBUF.as_slice(),
                DBUFSZ,
                0.0,
                OK,
                ctx,
            )?;

            //
            // Check integer data.
            //
            for J in 1..=IBUFSZ {
                XINTBF[J] = (((100000000 * PASSNO) + (100 * I)) + J);
            }

            FIRSTI = (LASTI + 1);
            LASTI = (LASTI + IBUFSZ);

            spicelib::DASRDI(HANDLE, FIRSTI, LASTI, INTBUF.as_slice_mut(), ctx)?;
            testutil::CHCKXC(false, b" ", OK, ctx)?;

            testutil::CHCKAI(
                b"XINTBF",
                INTBUF.as_slice(),
                b"=",
                XINTBF.as_slice(),
                IBUFSZ,
                OK,
                ctx,
            )?;
        }
    }

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASADC error cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADC error case #1: begin position of substring less than 1.",
        ctx,
    )?;

    //
    // Open a new DAS file for testing the error cases.
    //
    spicelib::DASONW(DASTE1, b"TEST", DASTE1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    fstr::assign(CDATA.get_mut(1), b"012345678901234567890123456789");
    N = 30;
    BPOS = 0;
    EPOS = 20;

    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADC error case #2: end position of substring less than 1.",
        ctx,
    )?;

    fstr::assign(CDATA.get_mut(1), b"012345678901234567890123456789");
    N = 30;
    BPOS = 1;
    EPOS = 0;

    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADC error case #3: begin position of substring greater than length of substring.",
        ctx,
    )?;

    fstr::assign(CDATA.get_mut(1), b"012345678901234567890123456789");
    N = 30;
    BPOS = (CSTRLN + 1);
    EPOS = 30;

    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADC error case #4: end position of substring greater than length of substring.",
        ctx,
    )?;

    fstr::assign(CDATA.get_mut(1), b"012345678901234567890123456789");
    N = 30;
    BPOS = 1;
    EPOS = (CSTRLN + 1);

    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADC error case #5: begin position greater than end position of substring.",
        ctx,
    )?;

    fstr::assign(CDATA.get_mut(1), b"012345678901234567890123456789");
    N = 30;
    BPOS = 25;
    EPOS = 20;

    spicelib::DASADC(HANDLE, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASADC error case #6: Trying to add characters to a DAS file that has not been open.",
        ctx,
    )?;

    N = 1;
    BPOS = 10;
    EPOS = 20;

    spicelib::DASADC(1000, N, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(DASNOSUCHHANDLE)", OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASADD error cases: None.
    //
    // *****************************************************************
    //
    // *****************************************************************
    //
    // DASADI error cases: None.
    //
    // *****************************************************************
    //
    // *****************************************************************
    //
    // DASRDC error cases: None.
    //
    // *****************************************************************
    //
    // *****************************************************************
    //
    // DASHFS error cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASHFS error case #1: DAS file is not open.", ctx)?;

    spicelib::DASHFS(
        HANDLE,
        &mut NRESVR,
        &mut NRESVC,
        &mut save.NCOMR,
        &mut NCOMC,
        &mut FREE,
        LASTLA.as_slice_mut(),
        LASTRC.as_slice_mut(),
        LASTWD.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(true, b"SPICE(DASNOSUCHHANDLE)", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASLLA error cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASLLA error case #1: DAS file is not open.", ctx)?;

    spicelib::DASLLA(HANDLE, &mut LASTC, &mut LASTD, &mut LASTI, ctx)?;
    testutil::CHCKXC(true, b"SPICE(DASNOSUCHHANDLE)", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASONW error cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASONW error case #1: blank filename.", ctx)?;

    spicelib::DASONW(b"    ", b"TEST", DASD1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(true, b"SPICE(BLANKFILENAME)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASONW error case #2: blank file type.", ctx)?;

    spicelib::DASONW(DASD1, b"    ", DASD1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(true, b"SPICE(BLANKFILETYPE)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASONW error case #3: nonprinting character case #1.", ctx)?;

    spicelib::DASONW(DASD1, &intrinsics::CHAR(31), DASD1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(true, b"SPICE(ILLEGALCHARACTER)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASONW error case #4: nonprinting character case #2.", ctx)?;

    spicelib::DASONW(DASD1, &intrinsics::CHAR(127), DASD1, 200, &mut HANDLE, ctx)?;
    testutil::CHCKXC(true, b"SPICE(ILLEGALCHARACTER)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASONW error case #5: negative number of comment records allocated.",
        ctx,
    )?;

    spicelib::DASONW(DASD1, b"TEST", DASD1, -1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDCOUNT)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    // Testing of SPICE(DASFTFULL)
    //
    //
    // *****************************************************************
    //
    // DASOPW error cases:
    //
    // *****************************************************************
    //
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASOPW error case #1: blank filename.", ctx)?;

    spicelib::DASOPW(b" ", &mut HANDLE, ctx)?;
    testutil::CHCKXC(true, b"SPICE(BLANKFILENAME)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASOPW error case #2: specified file does not exist.", ctx)?;

    spicelib::DASOPW(b"UNKNOWN.TXT", &mut HANDLE, ctx)?;
    testutil::CHCKXC(true, b"SPICE(FILENOTFOUND)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASOPW error case #3: specified file already opened.", ctx)?;

    spicelib::DASOPR(DASD1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::DASOPW(DASD1, &mut HANDL1, ctx)?;
    testutil::CHCKXC(true, b"SPICE(FILEOPENCONFLICT)", OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    // Testing of SPICE(DASFTFULL)
    //
    // *****************************************************************
    //
    // DASRDC error cases:
    //
    // *****************************************************************
    //
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASRDC error case #1: begin position of substring less than 1.",
        ctx,
    )?;

    //
    // Open the test DAS file created during the DASADC case
    // for testing the error cases.
    //
    spicelib::DASOPR(DASTE1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    FIRST = 1;
    LAST = 30;
    BPOS = 0;
    EPOS = 20;

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASRDC error case #2: end position of substring less than 1.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 30;
    BPOS = 1;
    EPOS = 0;

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASRDC error case #3: begin position of substring greater than length of substring.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 30;
    BPOS = (CSTRLN + 1);
    EPOS = 30;

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASRDC error case #4: end position of substring greater than length of substring.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 30;
    BPOS = 1;
    EPOS = (CSTRLN + 1);

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASRDC error case #5: begin position greater than end position of substring.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 30;
    BPOS = 25;
    EPOS = 20;

    spicelib::DASRDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg_mut(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(BADSUBSTRINGBOUNDS)", OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASRDD error cases: None.
    //
    // *****************************************************************
    //
    // *****************************************************************
    //
    // DASRDI error cases: None.
    //
    // *****************************************************************
    //
    // *****************************************************************
    //
    // DASUDC error cases:
    //
    // *****************************************************************
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASUDC error case #1: first logical address of DAS less than 1.",
        ctx,
    )?;

    //
    // Open the test DAS file created during the DASADC normal
    // case #1. Note that 120 characters are already in the DAS file,
    // therefore addresses 1:120 are in use.
    //
    spicelib::DASOPR(DASC1, &mut HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    FIRST = 0;
    LAST = 30;
    BPOS = 1;
    EPOS = 40;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDADDRESS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASUDC error case #2: last logical address of DAS less than 1.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 0;
    BPOS = 1;
    EPOS = 40;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDADDRESS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASUDC error case #3: first logical address of DAS greater than last character logical address.", ctx)?;

    FIRST = 121;
    LAST = 30;
    BPOS = 1;
    EPOS = 40;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDADDRESS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASUDC error case #4: last logical address of DAS greater than last character logical address.", ctx)?;

    FIRST = 1;
    LAST = 121;
    BPOS = 1;
    EPOS = 40;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDADDRESS)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASUDC error case #5: string begin index non-positive.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 120;
    BPOS = 0;
    EPOS = 40;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDINDEX)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASUDC error case #6: string begin index greater than string length.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 120;
    BPOS = (CSTRLN + 1);
    EPOS = (CSTRLN + 1);

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDINDEX)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(b"DASUDC error case #7: string end index non-positive.", ctx)?;

    FIRST = 1;
    LAST = 120;
    BPOS = 1;
    EPOS = 0;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDINDEX)", OK, ctx)?;
    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASUDC error case #8: string end index greater than string length.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 120;
    BPOS = 1;
    EPOS = (CSTRLN + 1);

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INVALIDINDEX)", OK, ctx)?;

    //
    // --- Case: -------------------------------------------------------
    //
    testutil::TCASE(
        b"DASUDC error case #9: string end index less than begin index.",
        ctx,
    )?;

    FIRST = 1;
    LAST = 120;
    BPOS = CSTRLN;
    EPOS = 1;

    spicelib::DASUDC(HANDLE, FIRST, LAST, BPOS, EPOS, CDATA.as_arg(), ctx)?;
    testutil::CHCKXC(true, b"SPICE(INDICESOUTOFORDER)", OK, ctx)?;

    //
    // Close the file.
    //
    spicelib::DASCLS(HANDLE, ctx)?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    //
    // *****************************************************************
    //
    // DASWBR error cases: None.
    //
    // *****************************************************************
    //
    // *****************************************************************
    //
    // Clean up
    //
    // *****************************************************************
    //
    // Remove all the DAF files created during the execution of the
    // tests.
    //
    testutil::KILFIL(DASC1, ctx)?;
    testutil::KILFIL(DASTE1, ctx)?;
    testutil::KILFIL(DASD1, ctx)?;
    testutil::KILFIL(DASI1, ctx)?;
    testutil::KILFIL(WBRTST, ctx)?;

    //
    // Close out the test family.
    //
    testutil::T_SUCCESS(OK, ctx);
    Ok(())
}