76 lines
2.6 KiB
Plaintext
76 lines
2.6 KiB
Plaintext
|
/- Integration test for the REPL
|
|||
|
-/
|
|||
|
import LSpec
|
|||
|
import Pantograph
|
|||
|
namespace Pantograph.Test
|
|||
|
open Pantograph
|
|||
|
|
|||
|
def subroutine_step (cmd: String) (payload: List (String × Lean.Json))
|
|||
|
(expected: Lean.Json): Subroutine LSpec.TestSeq := do
|
|||
|
let result ← execute { cmd := cmd, payload := Lean.Json.mkObj payload }
|
|||
|
return LSpec.test s!"{cmd}" (toString result = toString expected)
|
|||
|
|
|||
|
def subroutine_runner (steps: List (Subroutine LSpec.TestSeq)): IO LSpec.TestSeq := do
|
|||
|
-- Setup the environment for execution
|
|||
|
let env ← Lean.importModules
|
|||
|
(imports := [{module := Lean.Name.str .anonymous "Init", runtimeOnly := false }])
|
|||
|
(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
|
|||
|
}
|
|||
|
let commands: Subroutine LSpec.TestSeq :=
|
|||
|
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
|
|||
|
|
|||
|
def test_option_print : IO LSpec.TestSeq :=
|
|||
|
let pp? := Option.some "∀ (n : Nat), n + 1 = Nat.succ n"
|
|||
|
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)))"
|
|||
|
let module? := Option.some "Init.Data.Nat.Basic"
|
|||
|
subroutine_runner [
|
|||
|
subroutine_step "inspect"
|
|||
|
[("name", .str "Nat.add_one")]
|
|||
|
(Lean.toJson ({
|
|||
|
type := { pp? }, module? }:
|
|||
|
Commands.InspectResult)),
|
|||
|
subroutine_step "options.set"
|
|||
|
[("printExprAST", .bool true)]
|
|||
|
(Lean.toJson ({ }:
|
|||
|
Commands.OptionsSetResult)),
|
|||
|
subroutine_step "inspect"
|
|||
|
[("name", .str "Nat.add_one")]
|
|||
|
(Lean.toJson ({
|
|||
|
type := { pp?, sexp? }, module? }:
|
|||
|
Commands.InspectResult)),
|
|||
|
subroutine_step "options.print"
|
|||
|
[]
|
|||
|
(Lean.toJson ({ printExprAST := true }:
|
|||
|
Commands.OptionsPrintResult))
|
|||
|
]
|
|||
|
|
|||
|
def test_integration: IO LSpec.TestSeq := do
|
|||
|
|
|||
|
return LSpec.group "Integration" $
|
|||
|
(LSpec.group "Option modify" (← test_option_print))
|
|||
|
|
|||
|
|
|||
|
end Pantograph.Test
|