Skip to content

Commit 5a9631d

Browse files
author
AntonReinhard
committed
Add basic tests
1 parent 8b9cc55 commit 5a9631d

File tree

4 files changed

+64
-4
lines changed

4 files changed

+64
-4
lines changed

src/compton/scattering_process.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,17 @@ Return the implementation of [`AbstractPolarization`](@ref) or [`AbstractSpin`]
7272
function _spin_or_pol end
7373

7474
function _spin_or_pol(process::Compton, ::Electron, ::Incoming)
75-
return process.spin[1]
75+
return process.spins[1]
7676
end
7777

7878
function _spin_or_pol(process::Compton, ::Electron, ::Outgoing)
79-
return process.spin[2]
79+
return process.spins[2]
8080
end
8181

8282
function _spin_or_pol(process::Compton, ::Photon, ::Incoming)
83-
return process.polarization[1]
83+
return process.polarizations[1]
8484
end
8585

8686
function _spin_or_pol(process::Compton, ::Photon, ::Outgoing)
87-
return process.polarization[2]
87+
return process.polarizations[2]
8888
end

test/compton.jl

+50
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,54 @@ using Random
22
using QEDbase
33
using QEDprocesses
44

5+
@testset "constructors" begin
6+
@testset "default" begin
7+
proc = Compton()
8+
@test QEDprocesses._spin_or_pol(proc, Photon(), Incoming()) == AllPol()
9+
@test QEDprocesses._spin_or_pol(proc, Electron(), Incoming()) == AllSpin()
10+
@test QEDprocesses._spin_or_pol(proc, Photon(), Outgoing()) == AllPol()
11+
@test QEDprocesses._spin_or_pol(proc, Electron(), Outgoing()) == AllSpin()
12+
end
13+
14+
@testset "non-default" begin
15+
proc = Compton((PolX(), PolY()), (SpinUp(), SpinDown()))
16+
@test QEDprocesses._spin_or_pol(proc, Photon(), Incoming()) == PolX()
17+
@test QEDprocesses._spin_or_pol(proc, Electron(), Incoming()) == SpinUp()
18+
@test QEDprocesses._spin_or_pol(proc, Photon(), Outgoing()) == PolY()
19+
@test QEDprocesses._spin_or_pol(proc, Electron(), Outgoing()) == SpinDown()
20+
end
21+
end
22+
23+
@testset "scattering process interface" begin
24+
proc = Compton()
25+
26+
@test incoming_particles(proc) == (Photon(), Electron())
27+
@test outgoing_particles(proc) == (Photon(), Electron())
28+
29+
@test number_incoming_particles(proc) == 2
30+
@test number_outgoing_particles(proc) == 2
31+
end
32+
33+
@testset "invalid inputs" begin
34+
model = PerturbativeQED()
35+
proc = Compton()
36+
37+
momenta_2 = [zero(SFourMomentum) for _ in 1:2]
38+
momenta_3 = [zero(SFourMomentum) for _ in 1:3]
39+
40+
momenta_2_2 = Matrix{SFourMomentum}(undef, 2, 2)
41+
momenta_3_2 = Matrix{SFourMomentum}(undef, 3, 2)
42+
43+
# try compute single input with incorrect dimensions
44+
@test_throws DimensionMismatch differential_cross_section(proc, model, momenta_3, momenta_2)
45+
@test_throws "incoming" differential_cross_section(proc, model, momenta_3, momenta_2)
46+
@test_throws DimensionMismatch differential_cross_section(proc, model, momenta_2, momenta_3)
47+
@test_throws "outgoing" differential_cross_section(proc, model, momenta_2, momenta_3)
48+
49+
# try compute multiple inputs with incorrect dimensions
50+
@test_throws DimensionMismatch differential_cross_section(proc, model, momenta_3_2, momenta_2_2)
51+
@test_throws "incoming" differential_cross_section(proc, model, momenta_3_2, momenta_2_2)
52+
@test_throws DimensionMismatch differential_cross_section(proc, model, momenta_2_2, momenta_3_2)
53+
@test_throws "outgoing" differential_cross_section(proc, model, momenta_2_2, momenta_3_2)
54+
end
555

test/perturbative_qed.jl

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
using Random
2+
using QEDbase
3+
using QEDprocesses
4+
5+
@testset "interaction type" begin
6+
@test fundamental_interaction_type(PerturbativeQED()) == :electromagnetic
7+
end

test/runtests.jl

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ begin
1515
end
1616

1717
# modules
18+
@time @safetestset "perturbative qed" begin
19+
include("perturbative_qed.jl")
20+
end
1821
@time @safetestset "compton" begin
1922
include("compton.jl")
2023
end

0 commit comments

Comments
 (0)