forked from deblan/database-anonymizer
[wip] add run tests
This commit is contained in:
parent
1c6f792711
commit
a5fc2071da
3 changed files with 65 additions and 4 deletions
25
tests/mysql_data.sql
Normal file
25
tests/mysql_data.sql
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
SET NAMES utf8;
|
||||
SET time_zone = '+00:00';
|
||||
SET foreign_key_checks = 0;
|
||||
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
|
||||
DROP TABLE IF EXISTS `table_truncate1`;
|
||||
CREATE TABLE `table_truncate1` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS `table_truncate2`;
|
||||
CREATE TABLE `table_truncate2` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`delete_me` tinyint(4) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
INSERT INTO `table_truncate2` (`id`, `delete_me`) VALUES
|
||||
(1, 1),
|
||||
(2, 1),
|
||||
(3, 0);
|
||||
4
tests/schema.yml
Normal file
4
tests/schema.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
rules:
|
||||
actions:
|
||||
- table: table_truncate1
|
||||
truncate: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue