2023-08-14 21:43:40 -07:00
|
|
|
|
/- Integration test for the REPL
|
|
|
|
|
-/
|
|
|
|
|
import LSpec
|
|
|
|
|
import Pantograph
|
2023-10-06 17:31:36 -07:00
|
|
|
|
namespace Pantograph.Test.Integration
|
2023-08-14 21:43:40 -07:00
|
|
|
|
open Pantograph
|
|
|
|
|
|
2023-08-24 23:12:18 -07:00
|
|
|
|
def subroutine_named_step (name cmd: String) (payload: List (String × Lean.Json))
|
2023-08-15 15:40:54 -07:00
|
|
|
|
(expected: Lean.Json): MainM LSpec.TestSeq := do
|
2023-08-14 21:43:40 -07:00
|
|
|
|
let result ← execute { cmd := cmd, payload := Lean.Json.mkObj payload }
|
2023-08-24 23:12:18 -07:00
|
|
|
|
return LSpec.test name (toString result = toString expected)
|
|
|
|
|
def subroutine_step (cmd: String) (payload: List (String × Lean.Json))
|
|
|
|
|
(expected: Lean.Json): MainM LSpec.TestSeq := subroutine_named_step cmd cmd payload expected
|
2023-08-14 21:43:40 -07:00
|
|
|
|
|
2023-08-15 15:40:54 -07:00
|
|
|
|
def subroutine_runner (steps: List (MainM LSpec.TestSeq)): IO LSpec.TestSeq := do
|
2023-08-14 21:43:40 -07:00
|
|
|
|
-- Setup the environment for execution
|
|
|
|
|
let env ← Lean.importModules
|
2023-10-05 17:51:41 -07:00
|
|
|
|
(imports := #[{module := Lean.Name.str .anonymous "Init", runtimeOnly := false }])
|
2023-08-14 21:43:40 -07:00
|
|
|
|
(opts := {})
|
|
|
|
|
(trustLevel := 1)
|
|
|
|
|
let context: Context := {
|
|
|
|
|
imports := ["Init"]
|
|
|
|
|
}
|
|
|
|
|
let coreContext: Lean.Core.Context := {
|
|
|
|
|
currNamespace := Lean.Name.str .anonymous "Aniva"
|
|
|
|
|
openDecls := [],
|
|
|
|
|
fileName := "<Test>",
|
|
|
|
|
fileMap := { source := "", positions := #[0], lines := #[1] },
|
|
|
|
|
options := Lean.Options.empty
|
|
|
|
|
}
|
2023-08-15 15:40:54 -07:00
|
|
|
|
let commands: MainM LSpec.TestSeq :=
|
2023-08-14 21:43:40 -07:00
|
|
|
|
steps.foldlM (λ suite step => do
|
|
|
|
|
let result ← step
|
|
|
|
|
return suite ++ result) LSpec.TestSeq.done
|
|
|
|
|
try
|
|
|
|
|
let termElabM := commands.run context |>.run' {}
|
|
|
|
|
let metaM := termElabM.run' (ctx := {
|
|
|
|
|
declName? := some "_pantograph",
|
|
|
|
|
errToSorry := false
|
|
|
|
|
})
|
|
|
|
|
let coreM := metaM.run'
|
|
|
|
|
return Prod.fst $ (← coreM.toIO coreContext { env := env })
|
|
|
|
|
catch ex =>
|
|
|
|
|
return LSpec.check s!"Uncaught IO exception: {ex.toString}" false
|
|
|
|
|
|
2023-08-23 13:00:11 -07:00
|
|
|
|
def test_option_modify : IO LSpec.TestSeq :=
|
2023-08-14 21:43:40 -07:00
|
|
|
|
let pp? := Option.some "∀ (n : Nat), n + 1 = Nat.succ n"
|
2023-10-29 12:50:36 -07:00
|
|
|
|
let sexp? := Option.some "(:forall n (:c Nat) ((:c Eq) (:c Nat) ((:c HAdd.hAdd) (:c Nat) (:c Nat) (:c Nat) ((:c instHAdd) (:c Nat) (:c instAddNat)) 0 ((:c OfNat.ofNat) (:c Nat) (:lit 1) ((:c instOfNatNat) (:lit 1)))) ((:c Nat.succ) 0)))"
|
2023-08-14 21:43:40 -07:00
|
|
|
|
let module? := Option.some "Init.Data.Nat.Basic"
|
2023-10-15 17:15:23 -07:00
|
|
|
|
let options: Protocol.Options := {}
|
2023-08-14 21:43:40 -07:00
|
|
|
|
subroutine_runner [
|
2023-08-16 19:25:32 -07:00
|
|
|
|
subroutine_step "lib.inspect"
|
2023-08-14 21:43:40 -07:00
|
|
|
|
[("name", .str "Nat.add_one")]
|
|
|
|
|
(Lean.toJson ({
|
|
|
|
|
type := { pp? }, module? }:
|
2023-10-15 17:15:23 -07:00
|
|
|
|
Protocol.LibInspectResult)),
|
2023-08-14 21:43:40 -07:00
|
|
|
|
subroutine_step "options.set"
|
|
|
|
|
[("printExprAST", .bool true)]
|
|
|
|
|
(Lean.toJson ({ }:
|
2023-10-15 17:15:23 -07:00
|
|
|
|
Protocol.OptionsSetResult)),
|
2023-08-16 19:25:32 -07:00
|
|
|
|
subroutine_step "lib.inspect"
|
2023-08-14 21:43:40 -07:00
|
|
|
|
[("name", .str "Nat.add_one")]
|
|
|
|
|
(Lean.toJson ({
|
|
|
|
|
type := { pp?, sexp? }, module? }:
|
2023-10-15 17:15:23 -07:00
|
|
|
|
Protocol.LibInspectResult)),
|
2023-08-14 21:43:40 -07:00
|
|
|
|
subroutine_step "options.print"
|
|
|
|
|
[]
|
2023-08-15 15:40:54 -07:00
|
|
|
|
(Lean.toJson ({ options with printExprAST := true }:
|
2023-10-15 17:15:23 -07:00
|
|
|
|
Protocol.OptionsPrintResult))
|
2023-08-14 21:43:40 -07:00
|
|
|
|
]
|
2023-08-23 13:00:11 -07:00
|
|
|
|
def test_malformed_command : IO LSpec.TestSeq :=
|
|
|
|
|
let invalid := "invalid"
|
|
|
|
|
subroutine_runner [
|
2023-08-24 23:12:18 -07:00
|
|
|
|
subroutine_named_step "Invalid command" invalid
|
2023-08-23 13:00:11 -07:00
|
|
|
|
[("name", .str "Nat.add_one")]
|
|
|
|
|
(Lean.toJson ({
|
|
|
|
|
error := "command", desc := s!"Unknown command {invalid}"}:
|
2023-10-15 17:15:23 -07:00
|
|
|
|
Protocol.InteractionError)),
|
2023-08-24 23:12:18 -07:00
|
|
|
|
subroutine_named_step "JSON Deserialization" "expr.echo"
|
|
|
|
|
[(invalid, .str "Random garbage data")]
|
|
|
|
|
(Lean.toJson ({
|
2023-10-15 17:15:23 -07:00
|
|
|
|
error := "command", desc := s!"Unable to parse json: Pantograph.Protocol.ExprEcho.expr: String expected"}:
|
|
|
|
|
Protocol.InteractionError))
|
2023-08-23 13:00:11 -07:00
|
|
|
|
]
|
2023-10-27 15:32:59 -07:00
|
|
|
|
def test_tactic : IO LSpec.TestSeq :=
|
|
|
|
|
let goal: Protocol.Goal := {
|
2023-10-30 14:44:06 -07:00
|
|
|
|
name := "_uniq.10",
|
2023-10-27 15:32:59 -07:00
|
|
|
|
target := { pp? := .some "∀ (q : Prop), x ∨ q → q ∨ x" },
|
2023-10-29 11:56:56 -07:00
|
|
|
|
vars := #[{ name := "_uniq.9", userName := "x", isInaccessible? := .some false, type? := .some { pp? := .some "Prop" }}],
|
2023-10-27 15:32:59 -07:00
|
|
|
|
}
|
|
|
|
|
subroutine_runner [
|
|
|
|
|
subroutine_step "goal.start"
|
|
|
|
|
[("expr", .str "∀ (p q: Prop), p ∨ q → q ∨ p")]
|
|
|
|
|
(Lean.toJson ({stateId := 0}:
|
|
|
|
|
Protocol.GoalStartResult)),
|
|
|
|
|
subroutine_step "goal.tactic"
|
|
|
|
|
[("stateId", .num 0), ("goalId", .num 0), ("tactic", .str "intro x")]
|
|
|
|
|
(Lean.toJson ({
|
|
|
|
|
nextStateId? := .some 1,
|
|
|
|
|
goals? := #[goal],
|
|
|
|
|
}:
|
|
|
|
|
Protocol.GoalTacticResult))
|
|
|
|
|
]
|
2023-08-14 21:43:40 -07:00
|
|
|
|
|
2023-10-06 17:31:36 -07:00
|
|
|
|
def suite: IO LSpec.TestSeq := do
|
2023-08-14 21:43:40 -07:00
|
|
|
|
|
|
|
|
|
return LSpec.group "Integration" $
|
2023-08-23 13:00:11 -07:00
|
|
|
|
(LSpec.group "Option modify" (← test_option_modify)) ++
|
2023-10-27 15:32:59 -07:00
|
|
|
|
(LSpec.group "Malformed command" (← test_malformed_command)) ++
|
|
|
|
|
(LSpec.group "Tactic" (← test_tactic))
|
2023-08-14 21:43:40 -07:00
|
|
|
|
|
|
|
|
|
|
2023-10-06 17:31:36 -07:00
|
|
|
|
end Pantograph.Test.Integration
|