rejuvenation_23.0.0_507c1f00/workshop/tests/src/test_exercises_navigate.adb

  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
--  very excotic with and use clauses for demonstration purposes
with Ada.Assertions;        use Ada.Assertions;
with Ada.Strings.Equal_Case_Insensitive;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Ada.Text_IO;           use Ada.Text_IO;
with GNAT
  . --  with comment
Source_Info; use GNAT
    .  --  and even more comment
Source_Info;
with Langkit_Support.Text; use Langkit_Support.Text;
with Libadalang.Analysis, Libadalang.Common;
use Libadalang.Analysis, Libadalang.Common;
with Shared, Rejuvenation.Simple_Factory;
use Rejuvenation.Simple_Factory, Shared;

package body Test_Exercises_Navigate is

   --  Some examples of With Use clauses and what is reported:
   --  * With X; Use X;        -> X is reported
   --  * With X, Y; Use X, Y;  -> X and Y are reported
   --  * With X, Y; Use Y, X;  -> X and Y are reported
   --  * With X, Y; Use X;     -> X is reported
   --  * With X, Y; Use Y;     -> Y is reported
   --  * With X.Y; Use X, X.Y; -> X.Y is reported
   --  * With X.Y; Use X.Y, X; -> X.Y is reported
   procedure Test_LibAdaLang_WithUse_Packages (T : in out Test_Case'Class);
   procedure Test_LibAdaLang_WithUse_Packages (T : in out Test_Case'Class) is
      pragma Unreferenced (T);

      function Canonical_Name (N : Libadalang.Analysis.Name) return String;
      function Canonical_Name (N : Libadalang.Analysis.Name) return String is
         function Image (UTT : Unbounded_Text_Type) return String;
         function Image (UTT : Unbounded_Text_Type) return String is
         begin
            return Image (To_Text (UTT));
         end Image;

         function Join
           (UTTA : Unbounded_Text_Type_Array; Separator : String)
            return String;
         function Join
           (UTTA : Unbounded_Text_Type_Array; Separator : String) return String
         is
         begin
            if UTTA'Length = 0 then
               return "";
            else
               declare
                  Return_Value : Unbounded_String;
               begin
                  for Index in UTTA'First .. Positive'Pred (UTTA'Last) loop
                     Append (Return_Value, Image (UTTA (Index)) & Separator);
                  end loop;
                  Append (Return_Value, Image (UTTA (UTTA'Last)));
                  return To_String (Return_Value);
               end;
            end if;
         end Join;

      begin
         return Join (N.P_As_Symbol_Array, ".");
      end Canonical_Name;

      function Process_Node (Node : Ada_Node'Class) return Visit_Status;
      function Process_Node (Node : Ada_Node'Class) return Visit_Status is
      begin
         if Node.Kind = Ada_With_Clause then
            declare
               WC   : constant With_Clause := Node.As_With_Clause;
               Next : constant Ada_Node    := WC.Next_Sibling;
            begin
               if not Next.Is_Null and then Next.Kind = Ada_Use_Package_Clause
               then
                  declare
                     UC : constant Use_Package_Clause :=
                       WC.Next_Sibling.As_Use_Package_Clause;
                  begin
                     for WC_Package of WC.F_Packages loop
                        declare
                           WC_PN : constant Libadalang.Analysis.Name :=
                             WC_Package.As_Name;
                        begin
                           for UC_Package of UC.F_Packages loop
                              declare
                                 UC_PN : constant Libadalang.Analysis.Name :=
                                   UC_Package.As_Name;
                              begin
                                 if P_Name_Matches (WC_PN, UC_PN) then
                                    Put_Line
                                      ("Found consecutive 'with' " &
                                       "and 'use' of " &
                                       Canonical_Name (WC_PN));
                                 end if;
                              end;
                           end loop;
                        end;
                     end loop;
                  end;
               end if;
            end;
         end if;
         return Into;
      end Process_Node;

      Unit : constant Analysis_Unit :=
        Analyze_File ("src/" & GNAT.Source_Info.File);
   begin
      Put_Line ("Begin - " & Enclosing_Entity);
      Unit.Root.Traverse (Process_Node'Access);
      Put_Line ("Done - " & Enclosing_Entity);
   end Test_LibAdaLang_WithUse_Packages;

   procedure Test_LibAdaLang_Public_Subp_Definition_With_3_Parameters
     (T : in out Test_Case'Class);
   procedure Test_LibAdaLang_Public_Subp_Definition_With_3_Parameters
     (T : in out Test_Case'Class)
   is
      pragma Unreferenced (T);

      function Process_Node (Node : Ada_Node'Class) return Visit_Status;
      function Process_Node (Node : Ada_Node'Class) return Visit_Status is
      begin
         case Node.Kind is
            when Ada_Private_Part =>
               --  Public Declarations only!
               return Over;
            when Ada_Subp_Spec =>
               declare
                  SS : constant Subp_Spec := Node.As_Subp_Spec;
               begin
                  if Is_Part_Of_Subp_Def (SS)
                    and then Nr_Of_Parameters (SS) = 3
                  then
                     Put_Line ("Found " & Image (SS.F_Subp_Name.Text));
                  end if;
               end;
               return Into;
            when others =>
               return Into;
         end case;
      end Process_Node;

      Unit : constant Analysis_Unit :=
        Analyze_File ("../src/count_subprogram.ads");
   begin
      Put_Line ("Begin - " & Enclosing_Entity);
      Unit.Root.Traverse (Process_Node'Access);
      Put_Line ("Done - " & Enclosing_Entity);
   end Test_LibAdaLang_Public_Subp_Definition_With_3_Parameters;

   procedure Test_LibAdaLang_Used_External_Declarations
     (T : in out Test_Case'Class);
   procedure Test_LibAdaLang_Used_External_Declarations
     (T : in out Test_Case'Class)
   is
      pragma Unreferenced (T);

      function Process_Node (Node : Ada_Node'Class) return Visit_Status;
      function Process_Node (Node : Ada_Node'Class) return Visit_Status is
      begin
         if Node.Kind = Ada_Identifier then
            declare
               Id : constant Identifier := Node.As_Identifier;
               RD : constant Refd_Def   := Id.P_Failsafe_Referenced_Def_Name;
            begin
               case Kind (RD) is
                  when Precise =>
                     if Node.Unit /= Def_Name (RD).Unit then
                        Put_Line
                          (Image (Node.Full_Sloc_Image) & Image (Node.Text) &
                           " references to " & Image (Def_Name (RD).Text) &
                           " at " & Image (Def_Name (RD).Full_Sloc_Image));
                     end if;
                  when Error =>
                     null;
               --  Put_Line (Image (Node.Full_Sloc_Image) & Image (Node.Text) &
                     --              " doesn't reference anything");
                  when others =>
                     Assert
                       (Check   => False,
                        Message =>
                          "Assumption that project can be " &
                          "correct compiled seems violated: " &
                          Image (Node.Full_Sloc_Image) & Image (Node.Text) &
                          " results in " & Kind (RD)'Image);
               end case;
            exception
               when others =>
                  null;
            end;
         end if;
         return Into;
      end Process_Node;

      Filename         : constant String := "src/" & GNAT.Source_Info.File;
      Project_Filename : constant String        := "tests_workshop.gpr";
      Unit             : constant Analysis_Unit :=
        Analyze_File_In_Project (Filename, Project_Filename);
   begin
      Put_Line ("Begin - " & Enclosing_Entity);
      Unit.Root.Traverse (Process_Node'Access);
      Put_Line ("Done - " & Enclosing_Entity);
   end Test_LibAdaLang_Used_External_Declarations;

   procedure Test_LibAdaLang_Find_Assign_Condition_In_If_Statement
     (T : in out Test_Case'Class);
   procedure Test_LibAdaLang_Find_Assign_Condition_In_If_Statement
     (T : in out Test_Case'Class)
   is
      pragma Unreferenced (T);

      Found_Matches : Natural := 0;

      function Is_Match_Identifiers
        (ThenIdentifier, ElseIdentifier : Identifier) return Boolean;
      function Is_Match_Identifiers
        (ThenIdentifier, ElseIdentifier : Identifier) return Boolean is
        (Ada.Strings.Equal_Case_Insensitive
           (Image (ThenIdentifier.Text), "True")
         and then Ada.Strings.Equal_Case_Insensitive
           (Image (ElseIdentifier.Text), "False"));

      function Is_Match_Assign_Stmts
        (ThenAssignStmt, ElseAssignStmt : Assign_Stmt) return Boolean;
      function Is_Match_Assign_Stmts
        (ThenAssignStmt, ElseAssignStmt : Assign_Stmt) return Boolean is
        (ThenAssignStmt.F_Dest.Text = ElseAssignStmt.F_Dest.Text
         and then ThenAssignStmt.F_Expr.Kind = Ada_Identifier
         and then ElseAssignStmt.F_Expr.Kind = Ada_Identifier
         and then Is_Match_Identifiers
           (ThenAssignStmt.F_Expr.As_Identifier,
            ElseAssignStmt.F_Expr.As_Identifier));

      function Is_Match_Nodes (ThenNode, ElseNode : Ada_Node) return Boolean;
      function Is_Match_Nodes (ThenNode, ElseNode : Ada_Node) return Boolean is
        (ThenNode.Kind = Ada_Assign_Stmt
         and then ElseNode.Kind = Ada_Assign_Stmt
         and then Is_Match_Assign_Stmts
           (ThenNode.As_Assign_Stmt, ElseNode.As_Assign_Stmt));

      function Is_Match (IfStmt : If_Stmt) return Boolean;
      function Is_Match (IfStmt : If_Stmt) return Boolean is
        (IfStmt.F_Then_Stmts.Children_Count = 1
         and then IfStmt.F_Else_Stmts.Children_Count = 1
         and then IfStmt.F_Alternatives.Children_Count = 0
         and then Is_Match_Nodes
           (IfStmt.F_Then_Stmts.First_Child, IfStmt.F_Else_Stmts.First_Child));

      function Process_Node (Node : Ada_Node'Class) return Visit_Status;
      function Process_Node (Node : Ada_Node'Class) return Visit_Status is
      begin
         if Node.Kind = Ada_If_Stmt then
            declare
               IfStmt : constant If_Stmt := Node.As_If_Stmt;
            begin
               if Is_Match (IfStmt) then
                  Found_Matches := Found_Matches + 1;
                  Put_Line
                    (Image (IfStmt.Full_Sloc_Image) &
                     Image
                       (IfStmt.F_Then_Stmts.First_Child.As_Assign_Stmt.F_Dest
                          .Text) &
                     " := " & Image (IfStmt.F_Cond_Expr.Text) & ";");
               end if;
            end;
         end if;
         return Into;
      end Process_Node;

      Unit : constant Analysis_Unit :=
        Analyze_File ("../src/assignmentbyifexamples.adb");
   begin
      Put_Line ("Begin - " & Enclosing_Entity);
      Unit.Root.Traverse (Process_Node'Access);
      Assert
        (Found_Matches = 2,
         "Two instances in unit expected, got " & Found_Matches'Image);
      Put_Line ("Done - " & Enclosing_Entity);
   end Test_LibAdaLang_Find_Assign_Condition_In_If_Statement;

   --  Test plumbing

   overriding function Name
     (T : Exercise_Navigate_Test_Case) return AUnit.Message_String
   is
      pragma Unreferenced (T);
   begin
      return AUnit.Format ("Exercises Navigate");
   end Name;

   overriding procedure Register_Tests (T : in out Exercise_Navigate_Test_Case)
   is
   begin
      Registration.Register_Routine
        (T, Test_LibAdaLang_WithUse_Packages'Access,
         "Use LibAdaLang to packages that are included and used (with-use)");
      Registration.Register_Routine
        (T, Test_LibAdaLang_Public_Subp_Definition_With_3_Parameters'Access,
         "Use LibAdaLang to find Public Subprograms with 3 Parameters");
      Registration.Register_Routine
        (T, Test_LibAdaLang_Used_External_Declarations'Access,
         "Use LibAdaLang to find All Used External Declarations");
      Registration.Register_Routine
        (T, Test_LibAdaLang_Find_Assign_Condition_In_If_Statement'Access,
         "Use LibAdaLang to find assignment of " &
         "condition to variable using if statement. " & "Pattern 1");
   end Register_Tests;

end Test_Exercises_Navigate;