Skip to content

Commit 00d6e5c

Browse files
Fix Vararg handling on v1.7+ (#17)
1 parent 4ee3c0d commit 00d6e5c

File tree

6 files changed

+69
-22
lines changed

6 files changed

+69
-22
lines changed

.github/workflows/CI.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
jobs:
8+
test:
9+
name: Julia ${{ matrix.version }}
10+
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
version:
15+
- 1.6
16+
- 1
17+
- nightly
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: julia-actions/setup-julia@v1
21+
with:
22+
version: ${{ matrix.version }}
23+
- uses: julia-actions/julia-buildpkg@v1
24+
- uses: julia-actions/julia-runtest@v1
25+
continue-on-error: ${{ matrix.version == 'nightly' }}
26+
docs:
27+
name: Documentation
28+
runs-on: ubuntu-latest
29+
steps:
30+
- uses: actions/checkout@v2
31+
- uses: julia-actions/setup-julia@v1
32+
with:
33+
version: 1
34+
- run: |
35+
julia --project=docs -e '
36+
using Pkg
37+
Pkg.develop(PackageSpec(path=pwd()))
38+
Pkg.instantiate()'
39+
- run: julia --project=docs docs/make.jl
40+
env:
41+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

.travis.yml

-19
This file was deleted.

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SimpleMock"
22
uuid = "a896ed2c-15a5-4479-b61d-a0e88e2a1d25"
33
authors = ["Chris de Graaf <[email protected]>"]
4-
version = "1.2.0"
4+
version = "1.2.1"
55

66
[deps]
77
Cassette = "7057c7e9-c182-5462-911a-8362d720325c"

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
# SimpleMock [![Docs](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliatesting.github.io/SimpleMock.jl) [![Build Status](https://travis-ci.com/JuliaTesting/SimpleMock.jl.svg?branch=master)](https://travis-ci.com/JuliaTesting/SimpleMock.jl)
1+
# SimpleMock [![Docs](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliatesting.github.io/SimpleMock.jl) [![CI](https://github.com/JuliaTesting/SimpleMock.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaTesting/SimpleMock.jl/actions/workflows/CI.yml)
2+
3+
### Notice: kind of broken
4+
5+
This package is [broken in some cases on Julia 1.6 and newer](https://github.com/JuliaTesting/SimpleMock.jl/issues/13), for unknown reasons.
6+
Use at your own risk!
7+
8+
---
29

310
A basic mocking module, inspired by Python's [`unittest.mock`](https://docs.python.org/3/library/unittest.mock.html) and implemented with [Cassette](https://github.com/jrevels/Cassette.jl).
411

src/SimpleMock.jl

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ using Base: Callable, invokelatest, unwrap_unionall
1010
using Base.Iterators: Pairs
1111
using Core: Builtin, kwftype
1212

13+
if VERSION >= v"1.7"
14+
using Core: TypeofVararg
15+
end
16+
1317
using Cassette: Cassette, Context, overdub, posthook, prehook, recurse, @context
1418

1519
export

src/mock_fun.jl

+14-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,20 @@ function make_overdub(::Type{Ctx}, f::F, sig::Tuple) where {Ctx <: Context, F}
184184
T_uw = unwrap_unionall(T)
185185
name = gensym()
186186

187-
if T_uw.name.name === :Vararg
187+
if VERSION >= v"1.7" && T_uw isa TypeofVararg
188+
# T === T_uw.
189+
if isdefined(T, :T) && isdefined(T, :N) # Vararg{T, N}.
190+
foreach(1:T.N) do _i
191+
push!(sig_exs, :($name::$(T.T)))
192+
push!(sig_names, name)
193+
name = gensym()
194+
end
195+
else # Vararg{T, N} where {T, N} or Vararg{T, N} where N.
196+
T = Vararg{Any}
197+
push!(sig_exs, :($name::$(T.T)...))
198+
push!(sig_names, :($name...))
199+
end
200+
elseif T_uw.name.name === :Vararg
188201
if T isa UnionAll && T.body isa UnionAll # Vararg{T, N} where {T, N}.
189202
T = Vararg{Any}
190203
end

0 commit comments

Comments
 (0)