|
23 | 23 | @test_throws MethodError convert(Union{Int, Missing}, "a")
|
24 | 24 | end
|
25 | 25 |
|
| 26 | +mutable struct NotABitsType a end |
| 27 | +==(n1::NotABitsType,n2::NotABitsType) = n1.a == n2.a |
| 28 | + |
| 29 | +@testset "convert/reinterpret Arrays of Unions" begin |
| 30 | + unions(T) = (Union{T, Missing}, Union{T, Nothing}, Union{T, Missing, Nothing}) |
| 31 | + corrupters(::Type{T}) where T = (x for x in (missing, nothing) if x isa T) |
| 32 | + |
| 33 | + @testset "bits type ($U)" for U in unions(Int) |
| 34 | + xo = U[1, 2, 3] |
| 35 | + xr = reinterpret(Int, xo) |
| 36 | + #xc = convert(Vector{Int}, xo) |
| 37 | + #@test xc isa Vector{Int} |
| 38 | + @test xr isa Vector{Int} |
| 39 | + @test xr == xo |
| 40 | + #@test xc == xo |
| 41 | + # should not have allocated new memory |
| 42 | + #@test pointer(xc) == pointer(xo) |
| 43 | + @test pointer(xr) == pointer(xo) |
| 44 | + |
| 45 | + @test_throws ArgumentError reinterpret(Integer, xo) |
| 46 | + |
| 47 | + @testset "With non-target type values" begin |
| 48 | + yo = U[1, 2, 3, corrupters(U)...] |
| 49 | + #@test_throws ArgumentError convert(Vector{Int}, yo) |
| 50 | + yr = reinterpret(Int, yo) |
| 51 | + @test yr isa Vector{Int} |
| 52 | + # No comment on what happens for the nonInt values, unspecified behavour |
| 53 | + @test yr[1:3] == yo[1:3] |
| 54 | + @test length(yo) == length(yr) |
| 55 | + end |
| 56 | + end |
| 57 | + @testset "non-bits type ($U)" for U in unions(NotABitsType) |
| 58 | + xo = U[NotABitsType(1), NotABitsType(2), NotABitsType(3)] |
| 59 | + @test_throws ArgumentError reinterpret(Int, xo) |
| 60 | + #xc = convert(Vector{NotABitsType}, x) |
| 61 | + #@test xc isa Vector{Int} |
| 62 | + #@test xc == xo |
| 63 | + # should have allocated new memory |
| 64 | + #@test pointer(xc) != pointer(xo) |
| 65 | + end |
| 66 | +end |
| 67 | + |
26 | 68 | @testset "promote rules" begin
|
27 | 69 | @test promote_type(Missing, Missing) == Missing
|
28 | 70 | @test promote_type(Missing, Int) == Union{Missing, Int}
|
|
0 commit comments