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
|
------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2003-2012, AdaCore --
-- --
-- This is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the --
-- Free Software Foundation; either version 3, or (at your option) any --
-- later version. This software is distributed in the hope that it will --
-- be useful, but WITHOUT ANY WARRANTY; without even the implied warranty --
-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- General Public License for more details. --
-- --
-- You should have received a copy of the GNU General Public License --
-- distributed with this software; see file COPYING3. If not, go --
-- to http://www.gnu.org/licenses for a complete copy of the license. --
------------------------------------------------------------------------------
-- Test from the Interoplab Web site.
-- http://www.whitemesa.com/interop/proposal2.html
--
-- This program can be runned to do a simple validation of the SOAP/WSDL
-- implementation.
with Ada.Calendar;
with Ada.Integer_Text_IO;
with Ada.Strings.Unbounded;
with Ada.Text_IO;
with AWS.Translator;
with interopLab.Client;
with interopLab.Types;
procedure interopLab_Main is
use Ada;
use Ada.Strings.Unbounded;
use interopLab.Types;
function "+"
(Str : String)
return Unbounded_String
renames To_Unbounded_String;
package FIO is new Text_IO.Float_IO (Float);
------------
-- Output --
------------
procedure Output (S : SOAPStruct_Type) is
begin
Integer_Text_IO.Put (S.varInt); Text_IO.New_Line;
FIO.Put (S.varFloat, Exp => 0, Aft => 2); Text_IO.New_Line;
Text_IO.Put_Line (To_String (S.varString));
end Output;
------------------
-- T_echoBase64 --
------------------
procedure T_echoBase64 is
V : constant String
:= AWS.Translator.Base64_Encode ("AWS SOAP WSDL implementation");
Res : constant String := interopLab.Client.echoBase64 (V);
begin
Text_IO.Put_Line ("Echo Base64");
Text_IO.Put_Line (V);
Text_IO.Put_Line (Res);
Text_IO.New_Line;
end T_echoBase64;
-------------------
-- T_echoBoolean --
-------------------
procedure T_echoBoolean is
Res : Boolean;
begin
Text_IO.Put_Line ("Echo Boolean");
Res := interopLab.Client.echoBoolean (True);
Text_IO.Put_Line (Boolean'Image (Res));
Res := interopLab.Client.echoBoolean (False);
Text_IO.Put_Line (Boolean'Image (Res));
Text_IO.New_Line;
end T_echoBoolean;
----------------
-- T_echoDate --
----------------
procedure T_echoDate is
use type Ada.Calendar.Time;
T : constant Ada.Calendar.Time
:= Ada.Calendar.Time_Of (2003, 3, 12, 39482.0);
Res : Ada.Calendar.Time;
begin
Text_IO.Put_Line ("Echo Date");
Res := interopLab.Client.echoDate (T);
if Res = T then
Text_IO.Put_Line ("ok");
else
Text_IO.Put_Line ("nok");
end if;
Text_IO.New_Line;
end T_echoDate;
-----------------
-- T_echoFloat --
-----------------
procedure T_echoFloat is
begin
Text_IO.Put_Line ("Echo Float");
FIO.Put (interopLab.Client.echoFloat (2.345), Exp => 0);
Text_IO.New_Line;
FIO.Put (interopLab.Client.echoFloat (456.8765), Exp => 0);
Text_IO.New_Line;
Text_IO.New_Line;
end T_echoFloat;
-------------------
-- T_echoInteger --
-------------------
procedure T_echoInteger is
begin
Text_IO.Put_Line ("Echo Integer");
Integer_Text_IO.Put (interopLab.Client.echoInteger (12));
Text_IO.New_Line;
Integer_Text_IO.Put (interopLab.Client.echoInteger (9876543));
Text_IO.New_Line;
Text_IO.New_Line;
end T_echoInteger;
------------------------
-- T_echoIntegerArray --
------------------------
procedure T_echoIntegerArray is
Arr : constant ArrayOfint_Type := (34, 67, 98, 54, 78, 65, 1);
Res : constant echoIntegerArray_Result
:= interopLab.Client.echoIntegerArray (Arr);
begin
Text_IO.Put_Line ("Echo ArrayOfint");
for K in Res'Range loop
Text_IO.Put (Natural'Image (K) & " = ");
Integer_Text_IO.Put (Res (K));
Text_IO.New_Line;
end loop;
Text_IO.New_Line;
end T_echoIntegerArray;
------------------
-- T_echoString --
------------------
procedure T_echoString is
Res : constant String := interopLab.Client.echoString
("This is the real value for the string!");
begin
Text_IO.Put_Line ("Echo String");
Text_IO.Put_Line (Res);
Text_IO.New_Line;
end T_echoString;
-----------------------
-- T_echoStringArray --
-----------------------
procedure T_echoStringArray is
Arr : constant ArrayOfstring_Type := (+"first", +"second", +"third");
Res : constant echoStringArray_Result
:= interopLab.Client.echoStringArray (Arr);
begin
Text_IO.Put_Line ("Echo ArrayOfstring");
for K in Res'Range loop
Text_IO.Put_Line (Natural'Image (K) & " = " & To_String (Res (K)));
end loop;
Text_IO.New_Line;
end T_echoStringArray;
------------------
-- T_echoStruct --
------------------
procedure T_echoStruct is
Struct : constant SOAPStruct_Type := (6, 6.6, +"666");
pragma Warnings (Off);
-- Suppress a wrong warnings issued by GNAT, this is fixed in
-- GNAT 3.17
Res : constant echoStruct_Result
:= interopLab.Client.echoStruct (Struct);
begin
Text_IO.Put_Line ("Echo Struct");
Output (Res);
Text_IO.New_Line;
end T_echoStruct;
-----------------------
-- T_echoStructArray --
-----------------------
procedure T_echoStructArray is
A_Struct : constant ArrayOfSOAPStruct_Type
:= ((1, 1.1, +"one"), (2, 2.2, +"two"), (3, 3.3, +"three"));
Res : constant echoStructArray_Result
:= interopLab.Client.echoStructArray (A_Struct);
begin
Text_IO.Put_Line ("Echo ArrayOfStruct");
for K in Res'Range loop
Output (Res (K));
end loop;
Text_IO.New_Line;
end T_echoStructArray;
----------------
-- T_echoVoid --
----------------
procedure T_echoVoid is
begin
Text_IO.Put_Line ("Echo Void");
interopLab.Client.echoVoid;
end T_echoVoid;
begin
T_echoVoid;
T_echoStringArray;
T_echoInteger;
T_echoFloat;
T_echoIntegerArray;
T_echoStruct;
T_echoDate;
T_echoBoolean;
T_echoString;
T_echoBase64;
T_echoStructArray;
end interopLab_Main;
|