racket/pkgs/racket-test/tests/pkg/tests-versions.rkt
Matthew Flatt 2d4f3e2ac9 remove the "racket-pkgs" directory layer
The layer is now redundant, since everything left in "pkgs" is in the
"racket-pkgs" category.
2014-12-08 05:22:59 -07:00

98 lines
3.3 KiB
Racket

#lang racket/base
(require rackunit
racket/system
racket/match
(for-syntax racket/base
syntax/parse)
racket/file
racket/runtime-path
racket/path
racket/list
"shelly.rkt"
"util.rkt")
(this-test-is-run-by-the-main-test)
(pkg-tests
(shelly-begin
(initialize-catalogs)
(shelly-case
"create packages"
$ "raco pkg create --format zip test-pkgs/pkg-v-one"
$ "raco pkg create --format zip test-pkgs/pkg-v-two"
$ "raco pkg create --format zip test-pkgs/pkg-w-one"
$ "raco pkg create --format zip test-pkgs/pkg-v-three"
$ "raco pkg create --format zip test-pkgs/pkg-w-two"
$ "raco pkg create --format zip test-pkgs/pkg-w-three")
(hash-set! *index-ht-1* "pkg-v"
(hasheq 'checksum
(file->string "test-pkgs/pkg-v-one.zip.CHECKSUM")
'source
"http://localhost:9997/pkg-v-one.zip"))
(hash-set! *index-ht-1* "pkg-w"
(hasheq 'checksum
(file->string "test-pkgs/pkg-w-one.zip.CHECKSUM")
'source
"http://localhost:9997/pkg-w-one.zip"))
$ "raco pkg config --set catalogs http://localhost:9990"
(shelly-case
"update"
(shelly-begin "install pkg-v version 1.0"
$ "raco pkg install pkg-v")
(shelly-begin "fail on install pkg-w, bad version for pkg-v"
$ "raco pkg install --deps fail pkg-w"
=exit> 1
=stderr> #rx".*version mismatch for dependency.*for package: pkg-w.*pkg-v [(]have 1[.]0, need 2[.]0[)]")
(shelly-begin "auto-update still fails"
$ "raco pkg install --deps search-auto pkg-w"
=exit> 1
=stderr> #rx".*version mismatch for dependency.*for package: pkg-w.*pkg-v [(]have 1[.]0, need 2[.]0[)]"))
(hash-set! *index-ht-1* "pkg-v"
(hasheq 'checksum
(file->string "test-pkgs/pkg-v-two.zip.CHECKSUM")
'source
"http://localhost:9997/pkg-v-two.zip"))
(shelly-case
"update"
(shelly-begin "auto-update now succeeds (installs and version matches)"
$ "raco pkg install --deps search-auto pkg-w"))
(hash-set! *index-ht-1* "pkg-v"
(hasheq 'checksum
(file->string "test-pkgs/pkg-v-three.zip.CHECKSUM")
'source
"http://localhost:9997/pkg-v-three.zip"))
(hash-set! *index-ht-1* "pkg-w"
(hasheq 'checksum
(file->string "test-pkgs/pkg-w-two.zip.CHECKSUM")
'source
"http://localhost:9997/pkg-w-two.zip"))
(shelly-case
"update again"
(shelly-begin "transitive update succeeds"
$ "raco pkg update --auto pkg-w"
=stdout> #rx"automatically updated.* pkg-v"))
(hash-set! *index-ht-1* "pkg-w"
(hasheq 'checksum
(file->string "test-pkgs/pkg-w-three.zip.CHECKSUM")
'source
"http://localhost:9997/pkg-w-three.zip"))
(shelly-case
"update again"
(shelly-begin "update without needed pkg-v update"
$ "raco pkg update --auto pkg-w"
=stdout> #rx"esolving \"pkg-v\"(?!.*pkg-v)"))
(initialize-catalogs)))