sqry-cli 9.0.22

CLI for sqry - semantic code search
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
//! CLI integration tests for Ruby relation queries
//!
//! Tests that relation queries work end-to-end through the CLI for Ruby:
//! - Callers queries (method calls, blocks)
//! - Callees queries (what a method calls)
//! - Exports queries (classes, modules, methods)
//! - Imports queries (require statements)

mod common;
use common::sqry_bin;

use assert_cmd::Command;
use predicates::prelude::*;
use tempfile::TempDir;

// ============================================================================
// Exports Queries - Classes, Modules, Methods
// ============================================================================

#[test]
fn cli_ruby_exports_classes_and_methods() {
    let project = TempDir::new().unwrap();

    let ruby_code = r#"
def greet(name)
  "Hello, #{name}!"
end

private def private_helper
  42
end

class User
  attr_reader :name, :age

  def initialize(name, age)
    @name = name
    @age = age
  end

  def get_name
    @name
  end

  private

  def validate
    !@name.empty?
  end
end

API_VERSION = "1.0.0"
"#;
    std::fs::write(project.path().join("module.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Query for exported function
    Command::new(sqry_bin())
        .arg("query")
        .arg("exports:greet")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("module.rb"));

    // Query for exported class
    Command::new(sqry_bin())
        .arg("query")
        .arg("exports:User")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("module.rb"));

    // Private function should NOT be exported
    Command::new(sqry_bin())
        .arg("query")
        .arg("exports:private_helper")
        .arg(project.path())
        .assert()
        .success()
        .stderr(predicate::str::contains("No matches found"));
}

#[test]
fn cli_ruby_exports_modules() {
    let project = TempDir::new().unwrap();

    let ruby_code = r#"
module Utils
  def self.format(str)
    str.upcase
  end

  class Formatter
    def format(input)
      input.downcase
    end
  end
end

module API
  class Service
    def execute
      puts "Executing"
    end
  end
end
"#;
    std::fs::write(project.path().join("modules.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Query for module
    Command::new(sqry_bin())
        .arg("query")
        .arg("exports:Utils")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("modules.rb"));

    // Query for class in module
    Command::new(sqry_bin())
        .arg("query")
        .arg("exports:Formatter")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("modules.rb"));
}

// ============================================================================
// Callers Queries - Method Calls
// ============================================================================

#[test]
fn cli_ruby_callers_method_calls() {
    let project = TempDir::new().unwrap();

    let ruby_code = r#"
def validate(input)
  !input.nil? && !input.empty?
end

def process(data)
  if validate(data)
    data.strip
  else
    nil
  end
end

process("test")
"#;
    std::fs::write(project.path().join("processor.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Query for callers of validate
    Command::new(sqry_bin())
        .arg("query")
        .arg("callers:validate")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("process"));
}

#[test]
fn cli_ruby_callers_blocks() {
    let project = TempDir::new().unwrap();

    let ruby_code = r"
def transform(x)
  x * 2
end

def process_data
  data = [1, 2, 3]
  data.map { |x| transform(x) }
end

process_data
";
    std::fs::write(project.path().join("blocks.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Query for callers of transform (called in block)
    Command::new(sqry_bin())
        .arg("query")
        .arg("callers:transform")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("process_data"));
}

#[test]
fn cli_ruby_callers_supports_qualified_filters_and_output() {
    let project = TempDir::new().unwrap();

    let ruby_code = r#"
module Admin
  module Users
    class Controller
      def show
        render_view()
      end
    end
  end
end

module Dashboard
  class Controller
    def index
      Admin::Users::Controller.new.show
    end
  end
end

def render_view
  puts "rendering"
end

Dashboard::Controller.new.index
"#;
    std::fs::write(project.path().join("app.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Qualified display flag should surface the namespace-qualified caller
    Command::new(sqry_bin())
        .arg("query")
        .arg("--qualified-names")
        .arg("callers:render_view")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Admin::Users::Controller#show"));

    // JSON output includes caller_identity payload even without flag
    Command::new(sqry_bin())
        .arg("query")
        .arg("--json")
        .arg("callers:\"Admin::Users::Controller#show\"")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("\"caller_identity\""))
        .stdout(predicate::str::contains("Dashboard::Controller#index"));
}

// ============================================================================
// Callees Queries - What Methods Call
// ============================================================================

#[test]
fn cli_ruby_callees_method() {
    let project = TempDir::new().unwrap();

    let ruby_code = r#"
def log(message)
  puts message
end

def warn(message)
  puts "WARNING: #{message}"
end

def handle_error(error)
  log("Error occurred")
  warn(error.message)
end

handle_error(StandardError.new("Test"))
"#;
    std::fs::write(project.path().join("logger.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Query for callees of handle_error
    Command::new(sqry_bin())
        .arg("query")
        .arg("callees:handle_error")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("log"))
        .stdout(predicate::str::contains("warn"));
}

#[test]
fn cli_ruby_callees_supports_qualified_output() {
    let project = TempDir::new().unwrap();

    let ruby_code = r#"
module Database
  class Connection
    def self.execute(sql)
      puts sql
    end

    def self.query(sql)
      puts sql
    end
  end
end

def process_user_data
  Database::Connection.execute("SELECT * FROM users")
  Database::Connection.query("SELECT COUNT(*) FROM users")
end

def bootstrap_database
  Database::Connection.execute("CREATE TABLE users")
end

process_user_data
bootstrap_database
"#;
    std::fs::write(project.path().join("app.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // First verify basic callees query works (returns simple names)
    Command::new(sqry_bin())
        .arg("query")
        .arg("callees:process_user_data")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("execute"))
        .stdout(predicate::str::contains("query"));

    // Qualified display flag should surface the namespace-qualified callee
    Command::new(sqry_bin())
        .arg("query")
        .arg("--qualified-names")
        .arg("callees:process_user_data")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Database::Connection"));

    // JSON output includes callee_identity payload
    Command::new(sqry_bin())
        .arg("query")
        .arg("--json")
        .arg("callees:bootstrap_database")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("\"callee_identity\""));
}

// ============================================================================
// Imports Queries - Require Statements
// ============================================================================

#[test]
fn cli_ruby_imports() {
    let project = TempDir::new().unwrap();

    let ruby_code = r"
require 'json'
require 'fileutils'
require_relative 'user'

def read_config
  file = File.read('config.json')
  JSON.parse(file)
end

read_config
";
    std::fs::write(project.path().join("config.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Query for requires
    Command::new(sqry_bin())
        .arg("query")
        .arg("imports:json")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("config.rb"));

    Command::new(sqry_bin())
        .arg("query")
        .arg("imports:fileutils")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("config.rb"));
}

// ============================================================================
// Negative Tests
// ============================================================================

#[test]
fn cli_ruby_private_methods() {
    let project = TempDir::new().unwrap();

    let ruby_code = r"
class Service
  def execute
    validate
  end

  private

  def validate
    # private method
  end
end
";
    std::fs::write(project.path().join("service.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Query for callers of private method
    Command::new(sqry_bin())
        .arg("query")
        .arg("callers:validate")
        .arg(project.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("execute"));
}

#[test]
fn cli_ruby_callers_no_results() {
    let project = TempDir::new().unwrap();

    let ruby_code = r#"
def unused_function
  42
end

puts "Hello"
"#;
    std::fs::write(project.path().join("unused.rb"), ruby_code).unwrap();

    Command::new(sqry_bin())
        .arg("index")
        .arg(project.path())
        .assert()
        .success();

    // Query for callers of unused function
    Command::new(sqry_bin())
        .arg("query")
        .arg("callers:unused_function")
        .arg(project.path())
        .assert()
        .success();
    // No specific assertion - just verify it doesn't crash
}