DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ B T

⟦e332c7367⟧ TextFile

    Length: 12677 (0x3185)
    Types: TextFile
    Names: »B«

Derivation

└─⟦85b835f43⟧ Bits:30000549 8mm tape, Rational 1000, Xlib rev 6.00
    └─ ⟦0c20f784e⟧ »DATA« 
        └─⟦1abbe589f⟧ 
            └─⟦49e7f20b9⟧ 
                └─⟦this⟧ 

TextFile

with Test_Io;  
with Cvt_Test_Utilities;

with Xlbt_Arithmetic;  
with Xlbt_Basic;  
with Xlbt_Color;  
with Xlbt_Gc;  
with Xlbt_Grab;  
with Xlbt_Graphics;  
with Xlbt_Host;  
with Xlbt_Image;  
with Xlbt_Input_Focus;  
with Xlbt_Key;  
with Xlbt_Keyboard;  
with Xlbt_Misc;  
with Xlbt_Pointer;  
with Xlbt_Request;  
with Xlbt_Screen_Saver;  
with Xlbt_Window;  
with Xlbmt_Network_Types;

with Xlbip_Request_Converters;


procedure Cvt_131 is
------------------------------------------------------------------------------
-- Tests for Xlbip_Request_Converters
--
-- Xlbip_Request_Converters only instantiates the converters actually
-- used by the protocol.  The tester generics expect to have symmetric
-- converters for each type.  Individual tests instantiate their own
-- dummy To_Raw and From_Raw converters when necessary.
-- ****************************************************************************
-- * Date      - /Name/ Comment
-- *
-- * 18-SEP-90 - /DRK/ Created.
-- *  4-APR-91 - /GEB/ HPUX CDF chokes on the original unit, too big.  Break
-- *           -  it into 12-15 different units.
-- ****************************************************************************
------------------------------------------------------------------------------

--\f


---------------------------------
-- Handy constants and renames --
---------------------------------

    package Utils renames Cvt_Test_Utilities;  
    package Tests renames Utils.Raw_Data_Tests;  
    package Dummy renames Utils.Dummy_Converters;  
    use Utils.Raw_Data_Constants;

----------------------------------------------------------------------

-------------------------
-- Major test sections --
-------------------------

--\f

    procedure Test_X_Store_Named_Color_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Store_Named_Color_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Store_Named_Color_Request,  
                                  "X_Store_Named_Color_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Store_Named_Color_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, (others => False),  
                    0, (Id => (Number => 0)), 0, 0, 0, 0), (1 .. 16 => 0));  
        Test ("1.2.3.4.5.6.-1", (Xlbt_Request.Create_Window,  
                                 (Xlbt_Color.Do_Green => True, others => False),  
                                 3, (Id => (Number => 4)), 5, 6, 255, 255),  
              ((1, 2)) & Swab_00_03 & Swab_00_00_00_04 &  
                 Swab_00_00_00_05 & Swab_00_06 & Swab_Ff_Ff);  
        Test_Io.New_Line;  
    end Test_X_Store_Named_Color_Request;

--\f

    procedure Test_X_Translate_Coords_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Translate_Coords_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Translate_Coords_Request,  
                                  "X_Translate_Coords_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Translate_Coords_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, 0, 0,  
                    (Drawable => (Id => (Number => 0))),  
                    (Drawable => (Id => (Number => 0))), 0, 0), (1 .. 16 => 0));  
        Test ("1.-1.2.3.4.5.6", (Xlbt_Request.Create_Window, 255, 2,  
                                 (Drawable => (Id => (Number => 3))),  
                                 (Drawable => (Id => (Number => 4))), 5, 6),  
              ((1, Raw_Ff)) & Swab_00_02 & Swab_00_00_00_03 &  
                 Swab_00_00_00_04 & Swab_00_05 & Swab_00_06);  
        Test_Io.New_Line;  
    end Test_X_Translate_Coords_Request;

--\f

    procedure Test_X_Ungrab_Button_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Ungrab_Button_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Ungrab_Button_Request,  
                                  "X_Ungrab_Button_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Ungrab_Button_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, Xlbt_Pointer.Any_Button, 0,  
                    (Drawable => (Id => (Number => 0))), (others => False), 0),  
              (1 .. 12 => 0));  
        Test ("1.2.3.4.5.-1",  
              (Xlbt_Request.Create_Window, Xlbt_Pointer.Button_2,  
               3, (Drawable => (Id => (Number => 4))),  
               (Xlbt_Key.Control_Mask | Xlbt_Key.Shift_Mask => True,  
                others => False), 16#FFFF#),  
              ((1, 2)) & Swab_00_03 & Swab_00_00_00_04 &  
                 Swab_00_05 & Swab_Ff_Ff);  
        Test_Io.New_Line;  
    end Test_X_Ungrab_Button_Request;

--\f

    procedure Test_X_Ungrab_Key_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Ungrab_Key_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Ungrab_Key_Request,  
                                  "X_Ungrab_Key_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Ungrab_Key_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, 0, 0,  
                    (Drawable => (Id => (Number => 0))), (others => False), 0),  
              (1 .. 12 => 0));  
        Test ("1.2.3.4.5.-1",  
              (Xlbt_Request.Create_Window, 2, 3,  
               (Drawable => (Id => (Number => 4))),  
               (Xlbt_Key.Control_Mask | Xlbt_Key.Shift_Mask => True,  
                others => False), 16#FFFF#),  
              ((1, 2)) & Swab_00_03 & Swab_00_00_00_04 &  
                 Swab_00_05 & Swab_Ff_Ff);  
        Test_Io.New_Line;  
    end Test_X_Ungrab_Key_Request;

--\f

    procedure Test_X_Ungrab_Keyboard_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Ungrab_Keyboard_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Ungrab_Keyboard_Request,  
                                  "X_Ungrab_Keyboard_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Ungrab_Keyboard_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, 0, 0, 0), (1 .. 8 => 0));  
        Test ("1.-1.2.3", (Xlbt_Request.Create_Window, 255, 2, 3),  
              ((1, Raw_Ff)) & Swab_00_02 & Swab_00_00_00_03);  
        Test_Io.New_Line;  
    end Test_X_Ungrab_Keyboard_Request;

--\f

    procedure Test_X_Ungrab_Pointer_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Ungrab_Pointer_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Ungrab_Pointer_Request,  
                                  "X_Ungrab_Pointer_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Ungrab_Pointer_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, 0, 0, 0), (1 .. 8 => 0));  
        Test ("1.-1.2.3", (Xlbt_Request.Create_Window, 255, 2, 3),  
              ((1, Raw_Ff)) & Swab_00_02 & Swab_00_00_00_03);  
        Test_Io.New_Line;  
    end Test_X_Ungrab_Pointer_Request;

--\f

    procedure Test_X_Ungrab_Server_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Ungrab_Server_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Ungrab_Server_Request,  
                                  "X_Ungrab_Server_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Ungrab_Server_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, 0, 0), (1 .. 4 => 0));  
        Test ("1.-1.2", (Xlbt_Request.Create_Window, 255, 2),  
              ((1, Raw_Ff)) & Swab_00_02);  
        Test_Io.New_Line;  
    end Test_X_Ungrab_Server_Request;

--\f

    procedure Test_X_Uninstall_Colormap_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Uninstall_Colormap_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Uninstall_Colormap_Request,  
                                  "X_Uninstall_Colormap_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Uninstall_Colormap_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, 0, 0, (Id => (Number => 0))),  
              (1 .. 8 => 0));  
        Test ("1.-1.2.3", (Xlbt_Request.Create_Window,  
                           255, 2, (Id => (Number => 3))),  
              ((1, Raw_Ff)) & Swab_00_02 & Swab_00_00_00_03);  
        Test_Io.New_Line;  
    end Test_X_Uninstall_Colormap_Request;

--\f

    procedure Test_X_Unmap_Subwindows_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Unmap_Subwindows_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Unmap_Subwindows_Request,  
                                  "X_Unmap_Subwindows_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Unmap_Subwindows_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, 0, 0,  
                    (Drawable => (Id => (Number => 0)))), (1 .. 8 => 0));  
        Test ("1.-1.2.3", (Xlbt_Request.Create_Window, 255, 2,  
                           (Drawable => (Id => (Number => 3)))),  
              ((1, Raw_Ff)) & Swab_00_02 & Swab_00_00_00_03);  
        Test_Io.New_Line;  
    end Test_X_Unmap_Subwindows_Request;

--\f

    procedure Test_X_Unmap_Window_Request is  
        procedure From_Raw is new Dummy.Convert_To_Private  
                                     (Xlbt_Request.X_Unmap_Window_Request,  
                                      Xlbmt_Network_Types.X_Raw_Data_Array);  
        procedure Test is new Tests.Tester  
                                 (Xlbt_Request.X_Unmap_Window_Request,  
                                  "X_Unmap_Window_Request",  
                                  Xlbip_Request_Converters.To_Raw, From_Raw);  
    begin  
        Test_Io.Section ("X_Unmap_Window_Request conversions");  
        Test ("0", (Xlbt_Request.Invalid_Request, 0, 0,  
                    (Drawable => (Id => (Number => 0)))), (1 .. 8 => 0));  
        Test ("1.-1.2.3", (Xlbt_Request.Create_Window, 255, 2,  
                           (Drawable => (Id => (Number => 3)))),  
              ((1, Raw_Ff)) & Swab_00_02 & Swab_00_00_00_03);  
        Test_Io.New_Line;  
    end Test_X_Unmap_Window_Request;

--\f

begin

    Test_X_Store_Named_Color_Request;  
    Test_X_Translate_Coords_Request;  
    Test_X_Ungrab_Button_Request;  
    Test_X_Ungrab_Key_Request;  
    Test_X_Ungrab_Keyboard_Request;  
    Test_X_Ungrab_Pointer_Request;  
    Test_X_Ungrab_Server_Request;  
    Test_X_Uninstall_Colormap_Request;  
    Test_X_Unmap_Subwindows_Request;  
    Test_X_Unmap_Window_Request;

end Cvt_131;