aboutsummaryrefslogtreecommitdiffstats
path: root/tests/00-db-migration-0-to-1-foreign-key-violation/run
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2019-11-13 06:24:07 +0100
committerGuilhem Moulin <guilhem@fripost.org>2019-11-13 06:24:07 +0100
commitc6bbdd8aa697b2d42be1ac0839189da32d437a8f (patch)
treecd1b8d19d99557fbebe33344d0d23f6ac826da57 /tests/00-db-migration-0-to-1-foreign-key-violation/run
parent87d947df1b837514a0f1efa3bc36b58088bd2564 (diff)
parentdac4ab1c9306bf2035bc1547d2ed27ab09850120 (diff)
Merge branch 'master' into debian
Diffstat (limited to 'tests/00-db-migration-0-to-1-foreign-key-violation/run')
-rw-r--r--tests/00-db-migration-0-to-1-foreign-key-violation/run23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/00-db-migration-0-to-1-foreign-key-violation/run b/tests/00-db-migration-0-to-1-foreign-key-violation/run
deleted file mode 100644
index f2d12a9..0000000
--- a/tests/00-db-migration-0-to-1-foreign-key-violation/run
+++ /dev/null
@@ -1,23 +0,0 @@
-# create new schema and add INBOX
-interimap
-xgrep "^Creating new schema in database file " <"$STDERR"
-xgrep -Fx "database: Created mailbox INBOX" <"$STDERR"
-
-# empty table `mailboxes` and revert its schema to version 0
-sqlite3 "$XDG_DATA_HOME/interimap/remote.db" <<-EOF
- PRAGMA foreign_keys = OFF;
- PRAGMA user_version = 0;
- DROP TABLE mailboxes;
- CREATE TABLE mailboxes (
- idx INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
- mailbox TEXT NOT NULL CHECK (mailbox != '') UNIQUE,
- subscribed BOOLEAN NOT NULL
- );
-EOF
-
-# check that migration fails due to broken referential integrity
-! interimap
-xgrep -Fx "Upgrading database version from 0" <"$STDERR"
-xgrep -Fx "database: ERROR: Broken referential integrity! Refusing to commit changes." <"$STDERR"
-
-# vim: set filetype=sh :