summaryrefslogtreecommitdiff
path: root/tests/src/Interop/MarshalAPI/Miscellaneous/MarshalClassTests.cs
blob: 30ae04e5bd8597f413f90c5e284d8d8765ebfe82 (plain)
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
using System;
using System.Reflection;
using System.Threading;
using System.Runtime.InteropServices;
using CoreFXTestLibrary;

class MarshalClassTests
{
    //definition of structure that will be used in testing of structs with Fixed BSTR Safearray fields
    internal struct Variant
    {
        public ushort vt;
        public ushort wReserved1;
        public ushort wReserved2;
        public ushort wReserved3;
        public IntPtr bstrVal;
        public IntPtr pRecInfo;
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct StructWithFxdLPSTRSAFld
    {
        [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.LPStr, SizeConst = 0)]
        public String[] Arr;
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct SomeTestStruct
    {
        public int i;
        [MarshalAs(UnmanagedType.BStr)]
        public String s;
    }

    public enum TestEnum
    {
        red,
        green,
        blue
    }

#if BUG_876976
    public struct TestStructWithEnumArray
    {
        [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
        public TestEnum[] ArrayOfEnum;
    }
#endif

    [STAThread]
    static int Main()
    {
        int retVal = 100;

        IntPtr ip;
        Object o;
        SomeTestStruct someTs = new SomeTestStruct();
        StructWithFxdLPSTRSAFld someTs_FxdLPSTR = new StructWithFxdLPSTRSAFld();

#if BUG_876976
        Console.WriteLine("Testing SizeOf...");
        try
        {
            TestStructWithEnumArray s = new TestStructWithEnumArray();
            s.ArrayOfEnum = new TestEnum[3];
            s.ArrayOfEnum[0] = TestEnum.red;
            s.ArrayOfEnum[1] = TestEnum.green;
            s.ArrayOfEnum[2] = TestEnum.blue;
            Console.WriteLine("\tFirst call to SizeOf with TestStructWithEnumArray...");
            int retsize = Marshal.SizeOf(s.GetType());
            if (retsize != 12)
            {
                retVal = 0;
                Console.WriteLine("\t\tSize returned != 12");
                Console.WriteLine("\t\tReturned size = " + retsize);
            }

            retsize = 0;
            Console.WriteLine("\tSecond call to SizeOf with TestStructWithEnumArray...");
            retsize = Marshal.SizeOf(typeof(TestStructWithEnumArray));
            int genericRetsize = Marshal.SizeOf<TestStructWithEnumArray>();

            if (retsize != genericRetsize)
            {
                retVal = 0;
                Console.WriteLine("\t\tERROR: Generic and non generic versions of the API did not return the same size!");
            }

            if (retsize != 12)
            {
                retVal = 0;
                Console.WriteLine("\t\tSize returned != 12");
                Console.WriteLine("\t\tReturned size = " + retsize);
            }
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }
#endif

#if BUG_879268
        //////////////////////////////////////////////////////////////
        //StructureToPtr
        /////////////////////////////////////////////////////////////
        Console.WriteLine("Testing StructureToPtr...");
        Console.WriteLine("\tPassing IntPtr=IntPtr.Zero");
        ip = IntPtr.Zero;
        try
        {
            Marshal.StructureToPtr<SomeTestStruct>(someTs, ip, true);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tPassing structure=null");
        ip = new IntPtr(123);
        try
        {
            Marshal.StructureToPtr<Object>(null, ip, true);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }
#endif
        Console.WriteLine("\n\tPassing proper structure, proper IntPtr and fDeleteOld=true to hit remaining code paths");
        ip = Marshal.AllocHGlobal(Marshal.SizeOf(someTs));
        someTs.s = "something";
        Marshal.StructureToPtr(someTs, ip, false);
#if BUG_879268 
        Marshal.StructureToPtr(someTs, ip, true);
#endif
        Console.WriteLine("DONE testing StructureToPtr.");


        //////////////////////////////////////////////////////////////
        //PtrToStructure
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting PtrToStructure...");
#if BUG_878933
        Console.WriteLine("\tPassing IntPtr=IntPtr.Zero");
        ip = IntPtr.Zero;
        try
        {
            Marshal.PtrToStructure(ip, someTs);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tPassing structure=null");
        ip = new IntPtr(123);
        try
        {
            Marshal.PtrToStructure(ip, null);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }
#endif

        Console.WriteLine("\n\tPassing a value class to method override that expects a class and returns void");
        try
        {
            ip = new IntPtr(123);
            Marshal.PtrToStructure<SomeTestStruct>(ip, someTs);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentException ae)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ae.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing PtrToStructure.");

#if BUG_879277
        //////////////////////////////////////////////////////////////
        //DestroyStructure
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting DestroyStructure...");
        Console.WriteLine("\tPassing IntPtr=IntPtr.Zero");
        ip = IntPtr.Zero;
        try
        {
            Marshal.DestroyStructure<SomeTestStruct>(ip);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tPassing structuretype=null");
        ip = new IntPtr(123);
        try
        {
            Marshal.DestroyStructure(ip, null);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tPassing structuretype that does not have layout i.e. it has AUTO layout");
        try
        {
            Marshal.DestroyStructure(ip, someTs_Auto.GetType());
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentException ae)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ae.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tPassing structuretype that does have layout i.e. the positive test case");
        ip = Marshal.AllocHGlobal(Marshal.SizeOf(someTs));
        someTs.s = null;
        Marshal.StructureToPtr(someTs, ip, false);
        Marshal.DestroyStructure<SomeTestStruct>(ip);

        Console.WriteLine("DONE testing DestroyStructure.");
#endif

        //////////////////////////////////////////////////////////////
        //SizeOf
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting SizeOf...");
        Console.WriteLine("\n\tPassing structure=null");
        try
        {
            Marshal.SizeOf(null);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

#if BUG_879234 
        Console.WriteLine("\n\tPassing structure that has no layout and CANNOT be marshaled");
        try
        {
            Marshal.SizeOf(someTs_FxdLPSTR.GetType());
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentException ae)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ae.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }
#endif

        Console.WriteLine("\n\tPassing structure that has layout and can be marshaled");
        Marshal.SizeOf(someTs.GetType());

        Console.WriteLine("DONE testing SizeOf.");

#if BUG_879276
        //////////////////////////////////////////////////////////////
        //UnsafeAddrOfPinnedArrayElement
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting UnsafeAddrOfPinnedArrayElement...");
        Console.WriteLine("\tPassing arr=null");
        try
        {
            Marshal.UnsafeAddrOfPinnedArrayElement<Object>(null, 123);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing UnsafeAddrOfPinnedArrayElement.");
#endif

#if BUG_879276
        //////////////////////////////////////////////////////////////
        //OffsetOf
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting OffsetOf...");

        Console.WriteLine("\n\tMake sure that generic and non generic versions of the API returns the same offset.");
        IntPtr nonGenericOffsetCall = Marshal.OffsetOf(typeof(SomeTestStruct), "i");
        IntPtr genericOffsetCall = Marshal.OffsetOf<SomeTestStruct>("i");
        if (nonGenericOffsetCall != genericOffsetCall)
        {
            retVal = 0;
            Console.WriteLine("\t\tERROR: Generic and non generic versions of the API did not return the same offset!");
        }

        Console.WriteLine("\n\tPassing structure that has no layout and CANNOT be marshaled");
        try
        {
            Marshal.OffsetOf(someTs_FxdLPSTR.GetType(), "Arr");
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentException ae)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ae.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing OffsetOf.");
#endif

        //////////////////////////////////////////////////////////////
        //PtrToStringAnsi
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting PtrToStringAnsi...");
        Console.WriteLine("\n\tPassing ptr = null");
        try
        {
            Marshal.PtrToStringAnsi(IntPtr.Zero, 123);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tPassing len < 0 ");
        try
        {
            Marshal.PtrToStringAnsi(new IntPtr(123), -77);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentException ae)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ae.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing PtrToStringAnsi.");

        //////////////////////////////////////////////////////////////
        //PtrToStringUni
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting PtrToStringUni...");
        Console.WriteLine("\n\tPassing len < 0 ");
        try
        {
            Marshal.PtrToStringUni(new IntPtr(123), -77);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentException ae)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ae.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing PtrToStringUni.");

        //////////////////////////////////////////////////////////////
        //Copy
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting Copy...");
        Console.WriteLine("\n\tPassing psrc = null ");
        try
        {
            byte[] barr = null;
            Marshal.Copy(barr, 0, new IntPtr(123), 10);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tPassing startindex > numelem ");
        try
        {
            byte[] barr = new byte[2];
            Marshal.Copy(barr, 100, new IntPtr(123), 2);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentOutOfRangeException ae)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ae.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing Copy.");

        //////////////////////////////////////////////////////////////
        //GetComInterfaceForObject
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting GetComInterfaceForObject...");
#if BUG_878933
        Console.WriteLine("\n\tPassing Object = null ");
        try
        {
            Marshal.GetComInterfaceForObject(null, null);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing GetComInterfaceForObject.");
#endif

        //////////////////////////////////////////////////////////////
        //GetObjectForIUnknown
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting GetObjectForIUnknown...");
#if BUG_879254
        Console.WriteLine("\n\tPassing IntPtr = IntPtr.Zero ");
        try
        {
            Marshal.GetObjectForIUnknown(IntPtr.Zero);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing GetObjectForIUnknown.");
#endif
        //////////////////////////////////////////////////////////////
        //IsComObject
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting IsComObject...");
        Console.WriteLine("\n\tPassing Object = null ");
        try
        {
            Marshal.IsComObject(null);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing IsComObject.");

        //////////////////////////////////////////////////////////////
        //QueryInterface
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting QueryInterface...");
#if BUG_878933
        Console.WriteLine("\n\tPassing IUnkn = IntPtr.Zero");
        try
        {
            IntPtr temp = IntPtr.Zero;
            Guid g = Guid.Empty;
            Marshal.QueryInterface(IntPtr.Zero, ref g, out temp);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }
#endif

        Console.WriteLine("DONE testing QueryInterface.");

        //////////////////////////////////////////////////////////////
        //AddRef
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting AddRef...");
        Console.WriteLine("\n\tPassing IUnkn = IntPtr.Zero");
        try
        {
            Marshal.AddRef(IntPtr.Zero);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing AddRef.");

        //////////////////////////////////////////////////////////////
        //Release
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting Release...");
        Console.WriteLine("\n\tPassing IUnkn = IntPtr.Zero");
        try
        {
            Marshal.Release(IntPtr.Zero);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing Release.");

#if BUG_879276
        //////////////////////////////////////////////////////////////
        //GetNativeVariantForObject
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting GetNativeVariantForObject...");
        Console.WriteLine("\n\tPassing pDstNativeVariant = IntPtr.Zero");
        try
        {
            Marshal.GetNativeVariantForObject("Some Object", IntPtr.Zero);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing GetNativeVariantForObject.");

        //////////////////////////////////////////////////////////////
        //GetObjectForNativeVariant
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting GetObjectForNativeVariant...");
        Console.WriteLine("\n\tPassing pSrcNativeVariant = IntPtr.Zero");
        try
        {
            Marshal.GetObjectForNativeVariant<Object>(IntPtr.Zero);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing GetObjectForNativeVariant.");
#endif

#if BUG_879277
        //////////////////////////////////////////////////////////////
        //GetObjectsForNativeVariants
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting GetObjectsForNativeVariants...");
        Console.WriteLine("\n\tPassing aSrcNativeVariant = IntPtr.Zero");
        try
        {
            Marshal.GetObjectsForNativeVariants<Object>(IntPtr.Zero, 0);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tPassing cVars < 0");
        try
        {
            Marshal.GetObjectsForNativeVariants(new IntPtr(123), -77);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentOutOfRangeException ae)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ae.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("\n\tTesting the generic version of the API");
        Variant v = new Variant();
        v.vt = 0;
        v.wReserved1 = 0;
        v.wReserved2 = 0;
        v.wReserved3 = 0;
        v.bstrVal = IntPtr.Zero;
        v.pRecInfo = IntPtr.Zero;
        IntPtr parray = Marshal.AllocHGlobal(1 * Marshal.SizeOf(v));
        Marshal.GetNativeVariantForObject<ushort>(0, parray);

        ushort[] variantsArrayGeneric = Marshal.GetObjectsForNativeVariants<ushort>(parray, 1);
        Object[] variantsArray = Marshal.GetObjectsForNativeVariants(parray, 1);

        if (variantsArrayGeneric.Length != variantsArray.Length)
        {
            retVal = 0;
            Console.WriteLine("\t\tGeneric and non generic version calls returned different sized arrays\n\t\t\t");
        }

        for (int i = 0; i < variantsArray.Length; i++)
        {
            if ((ushort)variantsArray[i] != variantsArrayGeneric[i])
            {
                retVal = 0;
                Console.WriteLine("\t\tGeneric and non generic version calls returned different arrays\n\t\t\t");
            }
        }

        bool thrown = false;
        try
        {
            String[] marray = Marshal.GetObjectsForNativeVariants<String>(parray, 1);
        }
        catch (InvalidCastException e)
        {
            thrown = true;
            Console.WriteLine("Expected invalid cast exception was thrown.");
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }
        if (thrown != true)
        {
            Console.WriteLine("Expected invalid cast exception was NOT thrown.");
            retVal = 0;
        }

        thrown = false;
        try
        {
            int[] marray = Marshal.GetObjectsForNativeVariants<int>(parray, 1);
        }
        catch (InvalidCastException e)
        {
            thrown = true;
            Console.WriteLine("Expected invalid cast exception was thrown.");
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }
        if (thrown != true)
        {
            Console.WriteLine("Expected invalid cast exception was NOT thrown.");
            retVal = 0;
        }

        Console.WriteLine("DONE testing GetObjectsForNativeVariants.");
#endif

#if BUG_879277
        //////////////////////////////////////////////////////////////
        //GetStartComSlot
        /////////////////////////////////////////////////////////////
        Console.WriteLine("\nTesting GetStartComSlot...");
        Console.WriteLine("\n\tPassing t = null");
        try
        {
            Marshal.GetStartComSlot(null);
            retVal = 0;
            Console.WriteLine("\t\tNO EXCEPTION THROWN! FAILED!");
        }
        catch (ArgumentNullException ane)
        {
            Console.WriteLine("\t\tCaught Expected Exception:\n\t\t\t" + ane.ToString());
        }
        catch (Exception e)
        {
            retVal = 0;
            Console.WriteLine("\t\tUNEXPECTED EXCEPTION:\n\t\t\t" + e.ToString());
        }

        Console.WriteLine("DONE testing GetStartComSlot.");
#endif

        Console.WriteLine((retVal == 0) ? "\nFAILED!" : "\nPASSED!");
        return retVal;
    }
}