forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplcompletions.jl
1073 lines (934 loc) · 27.7 KB
/
replcompletions.jl
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
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is a part of Julia. License is MIT: https://julialang.org/license
using REPL.REPLCompletions
using Test
using Random
using REPL
@testset "Check symbols previously not shown by REPL.doc_completions()" begin
symbols = ["?","=","[]","[","]","{}","{","}",";","","'","&&","||","julia","Julia","new","@var_str"]
for i in symbols
@test REPL.doc_completions(i)[1]==i
end
end
let ex = quote
module CompletionFoo
using Random
import Test
mutable struct Test_y
yy
end
mutable struct Test_x
xx :: Test_y
end
type_test = Test_x(Test_y(1))
(::Test_y)() = "", ""
module CompletionFoo2
end
const bar = 1
foo() = bar
macro foobar()
:()
end
# Support non-Dict AbstractDicts, #19441
mutable struct CustomDict{K, V} <: AbstractDict{K, V}
mydict::Dict{K, V}
end
Base.keys(d::CustomDict) = collect(keys(d.mydict))
Base.length(d::CustomDict) = length(d.mydict)
test(x::T, y::T) where {T<:Real} = pass
test(x::Real, y::Real) = pass
test(x::AbstractArray{T}, y) where {T<:Real} = pass
test(args...) = pass
test1(x::Type{Float64}) = pass
test2(x::AbstractString) = pass
test2(x::Char) = pass
test2(x::Cmd) = pass
test3(x::AbstractArray{Int}, y::Int) = pass
test3(x::AbstractArray{Float64}, y::Float64) = pass
test4(x::AbstractString, y::AbstractString) = pass
test4(x::AbstractString, y::Regex) = pass
test5(x::Array{Bool,1}) = pass
test5(x::BitArray{1}) = pass
test5(x::Float64) = pass
const a=x->x
test6()=[a, a]
test7() = rand(Bool) ? 1 : 1.0
test8() = Any[1][1]
kwtest(; x=1, y=2, w...) = pass
array = [1, 1]
varfloat = 0.1
const tuple = (1, 2)
test_y_array=[CompletionFoo.Test_y(rand()) for i in 1:10]
test_dict = Dict("abc"=>1, "abcd"=>10, :bar=>2, :bar2=>9, Base=>3,
occursin=>4, `ls`=>5, 66=>7, 67=>8, ("q",3)=>11,
"α"=>12, :α=>13)
test_customdict = CustomDict(test_dict)
macro teststr_str(s) end
macro tϵsτstρ_str(s) end
macro testcmd_cmd(s) end
macro tϵsτcmδ_cmd(s) end
end
test_repl_comp_dict = CompletionFoo.test_dict
test_repl_comp_customdict = CompletionFoo.test_customdict
test_dict_ℂ = Dict(1=>2)
end
ex.head = :toplevel
Core.eval(Main, ex)
end
function map_completion_text(completions)
c, r, res = completions
return map(completion_text, c), r, res
end
test_complete(s) = map_completion_text(completions(s,lastindex(s)))
test_scomplete(s) = map_completion_text(shell_completions(s,lastindex(s)))
test_bslashcomplete(s) = map_completion_text(bslash_completions(s,lastindex(s))[2])
test_complete_context(s) = map_completion_text(completions(s,lastindex(s),Main.CompletionFoo))
let s = ""
c, r = test_complete(s)
@test "CompletionFoo" in c
@test isempty(r)
@test s[r] == ""
end
let s = "using REP"
c, r = test_complete(s)
@test count(isequal("REPL"), c) == 1
# issue #30234
@test !Base.isbindingresolved(Main, :tanh)
end
let s = "Comp"
c, r = test_complete(s)
@test "CompletionFoo" in c
@test r == 1:4
@test s[r] == "Comp"
end
let s = "Main.Comp"
c, r = test_complete(s)
@test "CompletionFoo" in c
@test r == 6:9
@test s[r] == "Comp"
end
let s = "Main.CompletionFoo."
c, r = test_complete(s)
@test "bar" in c
@test r === UnitRange{Int64}(20:19)
@test s[r] == ""
end
let s = "Main.CompletionFoo.f"
c, r = test_complete(s)
@test "foo" in c
@test r == 20:20
@test s[r] == "f"
@test !("foobar" in c)
end
# test method completions when `!` operator precedes
let
s = "!is"
c, r = test_complete(s)
@test "isa" in c
@test s[r] == "is"
@test !("!" in c)
s = "!!is"
c, r = test_complete(s)
@test "isa" in c
@test s[r] == "is"
@test !("!" in c)
end
# issue #6424
let s = "Main.CompletionFoo.@f"
c, r = test_complete(s)
@test "@foobar" in c
@test r == 20:21
@test s[r] == "@f"
@test !("foo" in c)
end
let s = "Main.CompletionFoo.type_test.x"
c, r = test_complete(s)
@test "xx" in c
@test r == 30:30
@test s[r] == "x"
end
let s = "Main.CompletionFoo.bar.no_val_available"
c, r = test_complete(s)
@test length(c)==0
end
#cannot do dot completion on infix operator
let s = "+."
c, r = test_complete(s)
@test length(c)==0
end
# To complete on a variable of a type, the type T of the variable
# must be a concrete type, hence Base.isstructtype(T) returns true,
# for the completion to succeed. That why `xx :: Test_y` of `Test_x`.
let s = "Main.CompletionFoo.type_test.xx.y"
c, r = test_complete(s)
@test "yy" in c
@test r == 33:33
@test s[r] == "y"
end
# issue #6333
let s = "Base.return_types(getin"
c, r = test_complete(s)
@test "getindex" in c
@test r == 19:23
@test s[r] == "getin"
end
# issue #23193: after `using`, identifiers can be prefixed by module names
let s = "using Test, Random"
c, r = test_complete(s)
@test !("RandomDevice" in c)
end
# issue #23226: identifiers must be separated by a comma (not a newline)
let s = "using Base\nusi"
c, r = test_complete(s)
@test "using" in c
end
# issue 23292
let
@test_nowarn test_complete("test7().")
c, r = test_complete("test8().")
@test isempty(c)
end
# inexistent completion inside a string
let s = "Base.print(\"lol"
c, r, res = test_complete(s)
@test res == false
end
# inexistent completion inside a cmd
let s = "run(`lol"
c, r, res = test_complete(s)
@test res == false
end
# test latex symbol completions
let s = "\\alpha"
c, r = test_bslashcomplete(s)
@test c[1] == "α"
@test r == 1:length(s)
@test length(c) == 1
end
# test latex symbol completions after unicode #9209
let s = "α\\alpha"
c, r = test_bslashcomplete(s)
@test c[1] == "α"
@test r == 3:sizeof(s)
@test length(c) == 1
end
# test emoji symbol completions
let s = "\\:koala:"
c, r = test_bslashcomplete(s)
@test c[1] == "🐨"
@test r == 1:sizeof(s)
@test length(c) == 1
end
let s = "\\:ko"
c, r = test_bslashcomplete(s)
@test "\\:koala:" in c
end
# test emoji symbol completions after unicode #9209
let s = "α\\:koala:"
c, r = test_bslashcomplete(s)
@test c[1] == "🐨"
@test r == 3:sizeof(s)
@test length(c) == 1
end
# test latex symbol completions in strings should not work when there
# is a backslash in front of `\alpha` because it interferes with path completion on windows
let s = "cd(\"path_to_an_empty_folder_should_not_complete_latex\\\\\\alpha"
c, r, res = test_complete(s)
@test length(c) == 0
end
# test latex symbol completions in strings
let s = "\"C:\\\\ \\alpha"
c, r, res = test_complete(s)
@test c[1] == "α"
@test r == 7:12
@test length(c) == 1
end
# test latex symbol completion in getindex expressions (#24705)
let s = "tuple[\\alpha"
c, r, res = test_complete_context(s)
@test c[1] == "α"
@test r == 7:12
@test length(c) == 1
end
let s = "\\a"
c, r, res = test_complete(s)
"\\alpha" in c
@test r == 1:2
@test s[r] == "\\a"
end
# `cd("C:\U should not make the repl crash due to escaping see comment #9137
let s = "cd(\"C:\\U"
c, r, res = test_complete(s)
end
# Test method completions
let s = "max("
c, r, res = test_complete(s)
@test !res
@test let found = false
for m in methods(max)
if !found
found = (c[1] == string(m))
end
end
found
end
@test r == 1:3
@test s[r] == "max"
end
# test method completions when `!` operator precedes
let
s = "!("
c, r, res = test_complete(s)
@test !res
@test all(m -> string(m) in c, methods(!))
@test s[r] == s[1:end-1]
s = "!isnothing("
c, r, res = test_complete(s)
@test !res
@test all(m -> string(m) in c, methods(isnothing))
@test s[r] == s[1:end-1]
s = "!!isnothing("
c, r, res = test_complete(s)
@test !res
@test all(m -> string(m) in c, methods(isnothing))
@test s[r] == s[1:end-1]
end
# Test completion of methods with input concrete args and args where typeinference determine their type
let s = "CompletionFoo.test(1,1, "
c, r, res = test_complete(s)
@test !res
@test c[1] == string(first(methods(Main.CompletionFoo.test, Tuple{Int, Int})))
@test length(c) == 3
@test r == 1:18
@test s[r] == "CompletionFoo.test"
end
let s = "CompletionFoo.test(CompletionFoo.array,"
c, r, res = test_complete(s)
@test !res
@test c[1] == string(first(methods(Main.CompletionFoo.test, Tuple{Array{Int, 1}, Any})))
@test length(c) == 2
@test r == 1:18
@test s[r] == "CompletionFoo.test"
end
let s = "CompletionFoo.test(1,1,1,"
c, r, res = test_complete(s)
@test !res
@test c[1] == string(first(methods(Main.CompletionFoo.test, Tuple{Any, Any, Any})))
@test r == 1:18
@test s[r] == "CompletionFoo.test"
end
let s = "CompletionFoo.test1(Int,"
c, r, res = test_complete(s)
@test !res
@test length(c) == 0
@test r == 1:19
@test s[r] == "CompletionFoo.test1"
end
let s = "CompletionFoo.test1(Float64,"
c, r, res = test_complete(s)
@test !res
@test length(c) == 1
@test r == 1:19
@test s[r] == "CompletionFoo.test1"
end
let s = "prevind(\"θ\",1,"
c, r, res = test_complete(s)
@test c[1] == string(first(methods(prevind, Tuple{String, Int})))
@test r == 1:7
@test s[r] == "prevind"
end
for (T, arg) in [(String,"\")\""),(Char, "')'")]
s = "(1, CompletionFoo.test2($arg,"
c, r, res = test_complete(s)
@test length(c) == 1
@test c[1] == string(first(methods(Main.CompletionFoo.test2, Tuple{T,})))
@test r == 5:23
@test s[r] == "CompletionFoo.test2"
end
let s = "(1, CompletionFoo.test2(`')'`,"
c, r, res = test_complete(s)
@test c[1] == string(first(methods(Main.CompletionFoo.test2, Tuple{Cmd})))
@test length(c) == 1
end
let s = "CompletionFoo.test3([1, 2] .+ CompletionFoo.varfloat,"
c, r, res = test_complete(s)
@test !res
@test_broken c[1] == string(first(methods(Main.CompletionFoo.test3, Tuple{Array{Float64, 1}, Float64})))
@test_broken length(c) == 1
end
let s = "CompletionFoo.test3([1.,2.], 1.,"
c, r, res = test_complete(s)
@test !res
@test c[1] == string(first(methods(Main.CompletionFoo.test3, Tuple{Array{Float64, 1}, Float64})))
@test r == 1:19
@test length(c) == 1
@test s[r] == "CompletionFoo.test3"
end
let s = "CompletionFoo.test4(\"e\",r\" \","
c, r, res = test_complete(s)
@test !res
@test c[1] == string(first(methods(Main.CompletionFoo.test4, Tuple{String, Regex})))
@test r == 1:19
@test length(c) == 1
@test s[r] == "CompletionFoo.test4"
end
# (As discussed in #19829, the Base.REPLCompletions.get_type function isn't
# powerful enough to analyze anonymous functions.)
let s = "CompletionFoo.test5(broadcast((x,y)->x==y, push!(Base.split(\"\",' '),\"\",\"\"), \"\"),"
c, r, res = test_complete(s)
@test !res
@test_broken length(c) == 1
@test_broken c[1] == string(first(methods(Main.CompletionFoo.test5, Tuple{BitArray{1}})))
end
# test partial expression expansion
let s = "CompletionFoo.test5(Bool[x==1 for x=1:4],"
c, r, res = test_complete(s)
@test !res
@test length(c) == 1
@test c[1] == string(first(methods(Main.CompletionFoo.test5, Tuple{Array{Bool,1}})))
end
let s = "CompletionFoo.test4(CompletionFoo.test_y_array[1]()[1], CompletionFoo.test_y_array[1]()[2], "
c, r, res = test_complete(s)
@test !res
@test length(c) == 1
@test c[1] == string(first(methods(Main.CompletionFoo.test4, Tuple{String, String})))
end
# Test that string escaption is handled correct
let s = """CompletionFoo.test4("\\"","""
c, r, res = test_complete(s)
@test !res
@test length(c) == 2
end
########## Test where the current inference logic fails ########
# Fails due to inference fails to determine a concrete type for arg 1
# But it returns AbstractArray{T,N} and hence is able to remove test5(x::Float64) from the suggestions
let s = "CompletionFoo.test5(AbstractArray[[]][1],"
c, r, res = test_complete(s)
@test !res
@test length(c) == 2
end
# equivalent to above but due to the time macro the completion fails to find the concrete type
let s = "CompletionFoo.test3(@time([1, 2] + CompletionFoo.varfloat),"
c, r, res = test_complete(s)
@test !res
@test length(c) == 2
end
#################################################################
let s = "CompletionFoo.kwtest( "
c, r, res = test_complete(s)
@test !res
@test length(c) == 1
@test occursin("x, y, w...", c[1])
end
# Test of inference based getfield completion
let s = "(1+2im)."
c,r = test_complete(s)
@test length(c) == 2
@test r == (lastindex(s) + 1):lastindex(s)
@test c == ["im", "re"]
end
let s = "((1+2im))."
c, r = test_complete(s)
@test length(c) == 2
@test r == (lastindex(s) + 1):lastindex(s)
@test c == ["im", "re"]
end
let s = "CompletionFoo.test_y_array[1]."
c, r = test_complete(s)
@test length(c) == 1
@test r == (lastindex(s) + 1):lastindex(s)
@test c[1] == "yy"
end
let s = "CompletionFoo.Test_y(rand()).y"
c, r = test_complete(s)
@test length(c) == 1
@test r == lastindex(s):lastindex(s)
@test c[1] == "yy"
end
let s = "CompletionFoo.test6()[1](CompletionFoo.Test_y(rand())).y"
c, r = test_complete(s)
@test length(c) == 1
@test r == lastindex(s):lastindex(s)
@test c[1] == "yy"
end
# Test completion in multi-line comments
let s = "#=\n\\alpha"
c, r, res = test_complete(s)
@test c[1] == "α"
@test r == 4:9
@test length(c) == 1
end
# Test that completion do not work in multi-line comments
let s = "#=\nmax"
c, r, res = test_complete(s)
@test length(c) == 0
end
# Test completion of packages
path = joinpath(tempdir(),randstring())
pushfirst!(LOAD_PATH, path)
try
mkpath(path)
write(joinpath(path, "Project.toml"),
"""
name = "MyProj"
[deps]
MyPack = "09ebe64f-f76c-4f21-bef2-bd9be6c77e76"
""")
c, r, res = test_complete("using MyP")
@test "MyPack" in c
@test "MyProj" in c
finally
@test popfirst!(LOAD_PATH) == path
rm(path, recursive=true)
end
path = joinpath(tempdir(),randstring())
push!(LOAD_PATH, path)
try
# Should not throw an error even though the path do no exist
test_complete("using ")
Pack_folder = joinpath(path, "Test_pack")
mkpath(Pack_folder)
Pack_folder2 = joinpath(path, "Test_pack2", "src")
mkpath(Pack_folder2)
touch(joinpath(Pack_folder2, "Test_pack2.jl"))
# Test it completes on folders
local c, r, res # workaround for issue #24331
c, r, res = test_complete("using Test_p")
@test !("Test_pack" in c)
@test "Test_pack2" in c
finally
@test pop!(LOAD_PATH) == path
rm(path, recursive=true)
end
# Test $ in shell-mode
let s = "cd \$(max"
c, r, res = test_scomplete(s)
@test "max" in c
@test r == 6:8
@test s[r] == "max"
end
# The return type is of importance, before #8995 it would return nothing
# which would raise an error in the repl code.
let c, r, res
c, r, res = test_scomplete("\$a")
@test c == String[]
@test r === UnitRange{Int64}(0:-1)
@test res === false
end
if Sys.isunix()
let s, c, r
#Assume that we can rely on the existence and accessibility of /tmp
# Tests path in Julia code and closing " if it's a file
# Issue #8047
s = "@show \"/dev/nul"
c,r = test_complete(s)
@test "null\"" in c
@test r == 13:15
@test s[r] == "nul"
# Tests path in Julia code and not closing " if it's a directory
# Issue #8047
s = "@show \"/tm"
c,r = test_complete(s)
@test "tmp/" in c
@test r == 9:10
@test s[r] == "tm"
# Tests path in Julia code and not double-closing "
# Issue #8047
s = "@show \"/dev/nul\""
c,r = completions(s, 15)
c = map(completion_text, c)
@test "null" in c
@test r == 13:15
@test s[r] == "nul"
s = "/t"
c,r = test_scomplete(s)
@test "tmp/" in c
@test r == 2:2
@test s[r] == "t"
s = "/tmp"
c,r = test_scomplete(s)
@test "tmp/" in c
@test r == 2:4
@test s[r] == "tmp"
# This should match things that are inside the tmp directory
if !isdir("/tmp/tmp")
s = "/tmp/"
c,r = test_scomplete(s)
@test !("tmp/" in c)
@test r === UnitRange{Int64}(6:5)
@test s[r] == ""
end
s = "cd \$(Iter"
c,r = test_scomplete(s)
@test "Iterators" in c
@test r == 6:9
@test s[r] == "Iter"
# Pressing tab after having entered "/tmp " should not
# attempt to complete "/tmp" but rather work on the current
# working directory again.
let s, c, r, file
file = joinpath(path, "repl completions")
s = "/tmp "
c,r = test_scomplete(s)
@test r === UnitRange{Int64}(6:5)
end
# Test completing paths with an escaped trailing space
let s, c, r, file
file = joinpath(tempdir(), "repl completions")
touch(file)
s = string(tempdir(), "/repl\\ ")
c,r = test_scomplete(s)
@test ["repl\\ completions"] == c
@test s[r] == "repl\\ "
rm(file)
end
# Tests homedir expansion
let path, s, c, r
path = homedir()
dir = joinpath(path, "tmpfoobar")
mkdir(dir)
s = "\"" * path * "/tmpfoob"
c,r = test_complete(s)
@test "tmpfoobar/" in c
l = 3 + length(path)
@test r == l:l+6
@test s[r] == "tmpfoob"
s = "\"~"
@test "tmpfoobar/" in c
c,r = test_complete(s)
rm(dir)
end
# Tests detecting of files in the env path (in shell mode)
let path, file
path = tempdir()
unreadable = joinpath(tempdir(), "replcompletion-unreadable")
try
file = joinpath(path, "tmp-executable")
touch(file)
chmod(file, 0o755)
mkdir(unreadable)
chmod(unreadable, 0o000)
# PATH can also contain folders which we aren't actually allowed to read.
withenv("PATH" => string(path, ":", unreadable)) do
s = "tmp-execu"
c,r = test_scomplete(s)
@test "tmp-executable" in c
@test r == 1:9
@test s[r] == "tmp-execu"
end
finally
rm(file)
rm(unreadable)
end
end
# Make sure completion results are unique in case things are in the env path twice.
let
file0 = joinpath(tempdir(), "repl-completion")
dir = joinpath(tempdir(), "repl-completion-subdir")
file1 = joinpath(dir, "repl-completion")
try
# Create /tmp/repl-completion and /tmp/repl-completion-subdir/repl-completion
mkdir(dir)
touch(file0)
touch(file1)
withenv("PATH" => string(tempdir(), ":", dir)) do
s = string("repl-completio")
c,r = test_scomplete(s)
@test ["repl-completion"] == c
@test s[r] == "repl-completio"
end
finally
rm(file0)
rm(file1)
rm(dir)
end
end
end
end
#test that it can auto complete with spaces in file/path
mktempdir() do path
space_folder = randstring() * " α"
dir = joinpath(path, space_folder)
dir_space = replace(space_folder, " " => "\\ ")
mkdir(dir)
cd(path) do
open(joinpath(space_folder, "space .file"),"w") do f
s = Sys.iswindows() ? "rm $dir_space\\\\space" : "cd $dir_space/space"
c, r = test_scomplete(s)
@test r == lastindex(s)-4:lastindex(s)
@test "space\\ .file" in c
s = Sys.iswindows() ? "cd(\"β $dir_space\\\\space" : "cd(\"β $dir_space/space"
c, r = test_complete(s)
@test r == lastindex(s)-4:lastindex(s)
@test "space .file\"" in c
end
# Test for issue #10324
s = "cd(\"$dir_space"
c, r = test_complete(s)
@test r == 5:15
@test s[r] == dir_space
#Test for #18479
for c in "'`@\$;&"
test_dir = "test$(c)test"
mkdir(joinpath(path, test_dir))
try
if !(c in ['\'','$']) # As these characters hold special meaning
# in shell commands the shell path completion cannot complete
# paths with these characters
c, r, res = test_scomplete(test_dir)
@test c[1] == test_dir*(Sys.iswindows() ? "\\\\" : "/")
@test res
end
c, r, res = test_complete("\""*test_dir)
@test c[1] == test_dir*(Sys.iswindows() ? "\\\\" : "/")
@test res
finally
rm(joinpath(path, test_dir), recursive=true)
end
end
end
rm(dir, recursive=true)
end
# Test tilde path completion
let (c, r, res) = test_complete("\"~/julia")
if !Sys.iswindows()
@test res && c == String[homedir() * "/julia"]
else
@test !res
end
c, r, res = test_complete("\"foo~bar")
@test !res
end
# Test the completion returns nothing when the folder do not exist
let (c, r) = test_complete("cd(\"folder_do_not_exist_77/file")
@test length(c) == 0
end
if Sys.iswindows()
tmp = tempname()
touch(tmp)
path = realpath(dirname(tmp))
file = basename(tmp)
temp_name = basename(path)
cd(path) do
s = "cd ..\\\\"
c,r = test_scomplete(s)
@test r == length(s)+1:length(s)
@test temp_name * "\\\\" in c
s = "ls $(file[1:2])"
c,r = test_scomplete(s)
@test r == length(s)-1:length(s)
@test file in c
s = "cd(\"..\\"
c,r = test_complete(s)
@test r == length(s)+1:length(s)
@test temp_name * "\\\\" in c
s = "cd(\"$(file[1:2])"
c,r = test_complete(s)
@test r == length(s) - 1:length(s)
@test (length(c) > 1 && file in c) || (["$file\""] == c)
end
rm(tmp)
end
# auto completions of true and false... issue #14101
let s = "tru"
c, r, res = test_complete(s)
@test "true" in c
end
let s = "fals"
c, r, res = test_complete(s)
@test "false" in c
end
# Don't crash when attempting to complete a tuple, #15329
let s = "CompletionFoo.tuple."
c, r, res = test_complete(s)
@test isempty(c)
end
# test Dicts
function test_dict_completion(dict_name)
s = "$dict_name[\"ab"
c, r = test_complete(s)
@test c == Any["\"abc\"", "\"abcd\""]
s = "$dict_name[\"abcd"
c, r = test_complete(s)
@test c == Any["\"abcd\"]"]
s = "$dict_name[ \"abcd" # leading whitespace
c, r = test_complete(s)
@test c == Any["\"abcd\"]"]
s = "$dict_name[\"abcd]" # trailing close bracket
c, r = completions(s, lastindex(s) - 1)
c = map(completion_text, c)
@test c == Any["\"abcd\""]
s = "$dict_name[:b"
c, r = test_complete(s)
@test c == Any[":bar", ":bar2"]
s = "$dict_name[:bar2"
c, r = test_complete(s)
@test c == Any[":bar2]"]
s = "$dict_name[Ba"
c, r = test_complete(s)
@test c == Any["Base]"]
s = "$dict_name[occ"
c, r = test_complete(s)
@test c == Any["occursin]"]
s = "$dict_name[`l"
c, r = test_complete(s)
@test c == Any["`ls`]"]
s = "$dict_name[6"
c, r = test_complete(s)
@test c == Any["66", "67"]
s = "$dict_name[66"
c, r = test_complete(s)
@test c == Any["66]"]
s = "$dict_name[("
c, r = test_complete(s)
@test c == Any["(\"q\", 3)]"]
s = "$dict_name[\"\\alp"
c, r = test_complete(s)
@test c == String["\\alpha"]
s = "$dict_name[\"\\alpha"
c, r = test_complete(s)
@test c == String["α"]
s = "$dict_name[\"α"
c, r = test_complete(s)
@test c == Any["\"α\"]"]
s = "$dict_name[:\\alp"
c, r = test_complete(s)
@test c == String["\\alpha"]
s = "$dict_name[:\\alpha"
c, r = test_complete(s)
@test c == String["α"]
s = "$dict_name[:α"
c, r = test_complete(s)
@test c == Any[":α]"]
s = "$dict_name["
c, r = test_complete(s)
@test c == sort!(repr.(keys(Main.CompletionFoo.test_dict)))
end
test_dict_completion("CompletionFoo.test_dict")
test_dict_completion("CompletionFoo.test_customdict")
test_dict_completion("test_repl_comp_dict")
test_dict_completion("test_repl_comp_customdict")
# Issue #23004: this should not throw:
@test REPLCompletions.dict_identifier_key("test_dict_ℂ[\\", :other) isa Tuple
@testset "completion of string/cmd macros (#22577)" begin
c, r, res = test_complete("ra")
@test "raw\"" in c
c, r, res = test_complete("CompletionFoo.tests")
@test "teststr\"" in c
c, r, res = test_complete("CompletionFoo.tϵsτs")
@test "tϵsτstρ\"" in c
c, r, res = test_complete("CompletionFoo.testc")
@test "testcmd`" in c
c, r, res = test_complete("CompletionFoo.tϵsτc")
@test "tϵsτcmδ`" in c
end
# Test completion in context
# No CompletionFoo.CompletionFoo
let s = ""
c, r = test_complete_context(s)
@test !("CompletionFoo" in c)
end
# Can see `rand()` after `using Random`
let s = "r"
c, r = test_complete_context(s)
@test "rand" in c
@test r == 1:1
@test s[r] == "r"
end
# Can see `Test.AbstractTestSet` after `import Test`
let s = "Test.A"
c, r = test_complete_context(s)
@test "AbstractTestSet" in c
@test r == 6:6
@test s[r] == "A"
end
# Can complete relative import
let s = "import ..M"
c, r = test_complete_context(s)
@test_broken "Main" in c
@test r == 10:10
@test s[r] == "M"
end
let s = ""
c, r = test_complete_context(s)
@test "bar" in c
@test r === UnitRange{Int64}(1:0)
@test s[r] == ""
end
let s = "f"
c, r = test_complete_context(s)
@test "foo" in c
@test r == 1:1
@test s[r] == "f"
@test !("foobar" in c)
end
let s = "@f"
c, r = test_complete_context(s)
@test "@foobar" in c
@test r == 1:2
@test s[r] == "@f"
@test !("foo" in c)
end
let s = "type_test.x"
c, r = test_complete_context(s)