Skip to content

Commit 4cb309e

Browse files
authored
lazily load feature packages (#113)
* lazily load feature packages * require LazyModules v0.3.0 * world-age-issue: skip reference file if not existed
1 parent 835c87e commit 4cb309e

6 files changed

+37
-15
lines changed

Project.toml

+4
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ authors = ["Christof Stocker <[email protected]>", "Lyndon White <oxina
44
version = "0.9.11"
55

66
[deps]
7+
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
78
DeepDiffs = "ab62b9b5-e342-54a8-a765-a90f495de1a6"
89
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
910
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
1011
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
1112
ImageInTerminal = "d8c32880-2388-543b-8c61-d9f865259254"
13+
LazyModules = "8cdb02fc-e678-4876-92c5-9defec4f444e"
1214
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1315
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"
1416
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1517

1618
[compat]
1719
BSON = "0.3"
20+
Colors = "0.10, 0.11, 0.12"
1821
CSVFiles = "1"
1922
DataFrames = "0.21, 0.22"
2023
DeepDiffs = "1.1"
@@ -25,6 +28,7 @@ ImageCore = "0.8.1, 0.9"
2528
ImageInTerminal = "0.3, 0.4"
2629
ImageMagick = "0.7, 1"
2730
ImageTransformations = "0.8"
31+
LazyModules = "0.3"
2832
Plots = "= 1.4.3"
2933
TestImages = "0.6, 1"
3034
julia = "1"

src/ReferenceTests.jl

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
module ReferenceTests
22

3+
using LazyModules
4+
35
using Test
4-
using ImageCore
6+
using Colors
57
using Distances
68
using FileIO
7-
using ImageInTerminal
9+
@lazy import ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
10+
@lazy import ImageInTerminal = "d8c32880-2388-543b-8c61-d9f865259254"
811
using SHA
912
using DeepDiffs
1013
using Random

src/equality_metrics.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ end
5252

5353
# a simplified PSNR is sufficient since we only use it to approximately compare two images
5454
_psnr(ref::AbstractArray{<:Color3}, x::AbstractArray{<:Color3}) =
55-
_psnr(channelview(RGB.(ref)), channelview(RGB.(x)), 1.0)
55+
_psnr(ImageCore.channelview(RGB.(ref)), ImageCore.channelview(RGB.(x)), 1.0)
5656

5757
_psnr(ref::AbstractArray{<:ColorTypes.Transparent3}, x::AbstractArray{<:ColorTypes.Transparent3}) =
58-
_psnr(channelview(ARGB.(ref)), channelview(ARGB.(x)), 1.0)
58+
_psnr(ImageCore.channelview(ARGB.(ref)), ImageCore.channelview(ARGB.(x)), 1.0)
5959

6060
_psnr(ref::AbstractArray{<:AbstractGray}, x::AbstractArray{<:AbstractGray}) =
61-
_psnr(channelview(ref), channelview(x), 1.0)
61+
_psnr(ImageCore.channelview(ref), ImageCore.channelview(x), 1.0)
6262

6363
_psnr(ref::AbstractArray{<:Real}, x::AbstractArray{<:Real}, peakval::Real) =
6464
20log10(peakval) - 10log10(_mse(float.(ref), float.(x)))

src/fileio.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ _convert(::Type{DataFormat{:SHA256}}, x; kw...) = bytes2hex(sha256(string(x)))
7979
function _convert(::Type{DataFormat{:SHA256}}, img::AbstractArray{<:Colorant}; kw...)
8080
# encode image into SHA256
8181
size_str = bytes2hex(sha256(reinterpret(UInt8,[map(Int64,size(img))...])))
82-
img_str = bytes2hex(sha256(reinterpret(UInt8,vec(rawview(channelview(img))))))
82+
img_bytes = vec(ImageCore.rawview(ImageCore.channelview(img)))
83+
img_str = bytes2hex(sha256(reinterpret(UInt8, img_bytes)))
8384

8485
return size_str * img_str
8586
end

test/runtests.jl

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
using Test
2-
using ImageInTerminal, TestImages, ImageCore, ImageTransformations
3-
using BSON:BSON
42
using FileIO
5-
using Plots
3+
using BSON: BSON
64
using Random
5+
using ReferenceTests
76

87
if isinteractive()
98
@info ("In interactive use, one should respond \"n\" when the program"
@@ -12,18 +11,21 @@ else
1211
@info ("Ten tests should correctly report failure in the transcript"
1312
* " (but not the test summary).")
1413
end
15-
# check for ambiguities
16-
refambs = detect_ambiguities(ImageInTerminal, Base, Core)
1714

18-
using ReferenceTests
19-
ambs = detect_ambiguities(ReferenceTests, ImageInTerminal, Base, Core)
15+
16+
ambs = detect_ambiguities(ReferenceTests, Base, Core)
17+
@test isempty(ambs)
18+
19+
# to properly test world age issues, the full test dependencies must be loaded later
20+
include("test_no_world_age_issues.jl")
21+
22+
using ImageInTerminal, TestImages, ImageCore, ImageTransformations
23+
using Plots
2024

2125
strip_summary(content::String) = join(split(content, "\n")[2:end], "\n")
2226

2327
@testset "ReferenceTests" begin
2428

25-
@test Set(setdiff(ambs, refambs)) == Set{Tuple{Method,Method}}()
26-
2729
# load/create some example images
2830
lena = testimage("lena_color_256")
2931
camera = testimage("cameraman")

test/test_no_world_age_issues.jl

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@testset "world age issues" begin
2+
files = ["references/camera.png"]
3+
4+
for filename in files
5+
ref_file = joinpath(@__DIR__, filename)
6+
if isfile(ref_file)
7+
@test_reference filename load(ref_file)
8+
else
9+
@info "Skip reference file: $ref_file"
10+
end
11+
end
12+
end

0 commit comments

Comments
 (0)