Skip to content
Snippets Groups Projects
Commit d9001a4a authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- updated readme (request object) to be up-to-date with the yapex client server

  - moved table schema up
  - removed deleted settings maxLines... now the request object specifies max protocol string length
- removed old (outdated) backupDb files
- added new backupDb files
- changed old name syndrom to yapex
parent 0d5ac39c
No related branches found
No related tags found
No related merge requests found
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Erstellungszeit: 08. Mai 2019 um 16:37
-- Server-Version: 5.7.23
-- PHP-Version: 7.2.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Datenbank: `syndromtestdb`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `plangs`
--
CREATE TABLE `plangs` (
`internalName` varchar(100) NOT NULL,
`compile` text NOT NULL,
`exec` text NOT NULL,
`extensions` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Daten für Tabelle `plangs`
--
INSERT INTO `plangs` (`internalName`, `compile`, `exec`, `extensions`) VALUES
('java', '\\\"javac\\\" \\\"-encoding\\\" \\\"UTF8\\\" \\\"#5\\\"', '\\\"java\\\" \\\"-Dfile.encoding=UTF8\\\" \\\"-cp\\\" \\\"#1\\\" \\\"#2\\\"', '[\"java\"]'),
('python', '\\\"python\\\" \\\"-m\\\" \\\"py_compile\\\" \\\"#5\\\"', '\\\"python\\\" \\\"#5\\\"', '[\"py\"]');
--
-- Indizes der exportierten Tabellen
--
--
-- Indizes für die Tabelle `plangs`
--
ALTER TABLE `plangs`
ADD PRIMARY KEY (`internalName`);
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Erstellungszeit: 08. Mai 2019 um 16:37
-- Server-Version: 5.7.23
-- PHP-Version: 7.2.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Datenbank: `syndromtestdb`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `transactions`
--
CREATE TABLE `transactions` (
`id` varchar(50) NOT NULL,
`rootDirName` varchar(50) NOT NULL,
`testType` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indizes der exportierten Tabellen
--
--
-- Indizes für die Tabelle `transactions`
--
ALTER TABLE `transactions`
ADD PRIMARY KEY (`id`);
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Erstellungszeit: 08. Mai 2019 um 16:37
-- Server-Version: 5.7.23
-- PHP-Version: 7.2.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Datenbank: `syndromtestdb`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `config`
--
CREATE TABLE `config` (
`id` int(11) NOT NULL,
`workingDirFullPath` text NOT NULL,
`hardTimeoutInMs` int(11) NOT NULL,
`hardCompileTimeoutInMs` int(11) NOT NULL,
`hardMemoryLimitInKb` int(11) NOT NULL,
`hardDiskSpaceLimitInKb` int(11) NOT NULL,
`maxParallelTests` int(11) NOT NULL,
`maxNumberOfTestsWithOneRequest` int(11) NOT NULL,
`runner` text NOT NULL,
`showTestRunnerDebugOutput` tinyint(1) NOT NULL DEFAULT '0',
`maxLinesToRead` int(11) NOT NULL,
`maxErrLinesToRead` int(11) NOT NULL,
`maxLinesToWrite` int(11) NOT NULL,
`environmentVars` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Daten für Tabelle `config`
--
INSERT INTO `config` (`id`, `workingDirFullPath`, `hardTimeoutInMs`, `hardCompileTimeoutInMs`, `hardMemoryLimitInKb`, `hardDiskSpaceLimitInKb`, `maxParallelTests`, `maxNumberOfTestsWithOneRequest`, `runner`, `showTestRunnerDebugOutput`, `maxLinesToRead`, `maxErrLinesToRead`, `maxLinesToWrite`, `environmentVars`) VALUES
(1, '/Users/janis/Documents/Test/', 4000, 2000, 2000, 2000, 70, 15, '\"/Users/janis/Misc/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/bin/java\" -Dfile.encoding=UTF8 -cp \"/Users/janis/Documents/Projects/SyndromAll/Syndrom_DefaultTestRunnerFullThreaded/out\" Main', 0, 500, 500, 500, NULL);
--
-- Indizes der exportierten Tabellen
--
--
-- Indizes für die Tabelle `config`
--
ALTER TABLE `config`
ADD PRIMARY KEY (`id`);
......@@ -3,9 +3,9 @@
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Erstellungszeit: 08. Mai 2019 um 18:36
-- Server-Version: 10.1.37-MariaDB-0+deb9u1
-- PHP-Version: 7.0.33-0+deb9u1
-- Erstellungszeit: 01. Mrz 2020 um 15:21
-- Server-Version: 10.1.41-MariaDB-0+deb9u1
-- PHP-Version: 7.0.33-0+deb9u6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
......@@ -37,9 +37,7 @@ CREATE TABLE `config` (
`maxNumberOfTestsWithOneRequest` int(11) NOT NULL,
`runner` text NOT NULL,
`showTestRunnerDebugOutput` tinyint(1) NOT NULL DEFAULT '0',
`maxLinesToRead` int(11) NOT NULL,
`maxErrLinesToRead` int(11) NOT NULL,
`maxLinesToWrite` int(11) NOT NULL,
`insertTraceLogs` tinyint(1) NOT NULL DEFAULT '1',
`environmentVars` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
......@@ -47,8 +45,8 @@ CREATE TABLE `config` (
-- Daten für Tabelle `config`
--
INSERT INTO `config` (`id`, `workingDirFullPath`, `hardTimeoutInMs`, `hardCompileTimeoutInMs`, `hardMemoryLimitInKb`, `hardDiskSpaceLimitInKb`, `maxParallelTests`, `maxNumberOfTestsWithOneRequest`, `runner`, `showTestRunnerDebugOutput`, `maxLinesToRead`, `maxErrLinesToRead`, `maxLinesToWrite`, `environmentVars`) VALUES
(1, '/opt/yapex/_tests', 5000, 3000, 2000, 2000, 100, 15, '\"java\" -Dfile.encoding=UTF8 -cp \"/opt/yapex/LinuxSafeTestRunner/src\" Main', 0, 500, 500, 500, 'USER=yapextester\r\nHOME=/home/yapextester\r\nLANG=de_DE.UTF-8\r\nPATH=/usr/local/bin:/usr/bin:/bin');
INSERT INTO `config` (`id`, `workingDirFullPath`, `hardTimeoutInMs`, `hardCompileTimeoutInMs`, `hardMemoryLimitInKb`, `hardDiskSpaceLimitInKb`, `maxParallelTests`, `maxNumberOfTestsWithOneRequest`, `runner`, `showTestRunnerDebugOutput`, `insertTraceLogs`, `environmentVars`) VALUES
(1, '/opt/yapex/_tests', 5000, 3000, 2000, 2000, 100, 15, '\"java\" -Dfile.encoding=UTF8 -cp \"/opt/yapex/LinuxSafeTestRunner/src\" Main', 0, 1, 'USER=yapextester\r\nHOME=/home/yapextester\r\nLANG=de_DE.UTF-8\r\nPATH=/usr/local/bin:/usr/bin:/bin');
--
-- Indizes der exportierten Tabellen
......
......@@ -3,9 +3,9 @@
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Erstellungszeit: 08. Mai 2019 um 18:36
-- Server-Version: 10.1.37-MariaDB-0+deb9u1
-- PHP-Version: 7.0.33-0+deb9u1
-- Erstellungszeit: 01. Mrz 2020 um 15:21
-- Server-Version: 10.1.41-MariaDB-0+deb9u1
-- PHP-Version: 7.0.33-0+deb9u6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
......@@ -38,8 +38,8 @@ CREATE TABLE `plangs` (
--
INSERT INTO `plangs` (`internalName`, `compile`, `exec`, `extensions`) VALUES
('C', '\\\"gcc\\\" \\\"-v\\\" \\\"#5\\\"', '\\\"#1/a.out\\\"', '[\"c\"]'),
('java', '\\\"javac\\\" \\\"-encoding\\\" \\\"UTF8\\\" \\\"#5\\\"', '\\\"java\\\" \\\"-Dfile.encoding=UTF8\\\" \\\"-cp\\\" \\\"#1\\\" \\\"#2\\\"', '[\"java\"]');
('c', '\"gcc\" \"#5\"', '\"#1/a.out\"', '[\"c\"]'),
('java', 'javac -encoding UTF8 #5\"', 'java -Dfile.encoding=UTF8 \"-cp\" \"#1\" \"#2\"', '[\"java\"]');
--
-- Indizes der exportierten Tabellen
......
-- phpMyAdmin SQL Dump
-- version 4.2.12deb2+deb8u2
-- http://www.phpmyadmin.net
-- version 4.6.6deb4
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Erstellungszeit: 09. Jan 2017 um 00:42
-- Server Version: 5.5.53-0+deb8u1
-- PHP-Version: 5.6.27-0+deb8u1
-- Erstellungszeit: 01. Mrz 2020 um 15:23
-- Server-Version: 10.1.41-MariaDB-0+deb9u1
-- PHP-Version: 7.0.33-0+deb9u6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
......@@ -14,45 +14,45 @@ SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Datenbank: `syndromtestdb`
-- Datenbank: `yapexTestDb`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `plangs`
-- Tabellenstruktur für Tabelle `traceLog`
--
CREATE TABLE IF NOT EXISTS `plangs` (
`internalName` varchar(100) NOT NULL,
`compile` text NOT NULL,
`exec` text NOT NULL,
`hardTimeoutInMs` int(11) NOT NULL,
`hardMemoryLimitInKb` int(11) NOT NULL,
`hardDiskSpaceLimitInKb` int(11) NOT NULL,
`extensions` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `traceLog` (
`id` int(11) NOT NULL,
`dateTime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`traceString` text NOT NULL,
`processString` text NOT NULL,
`sourceCode` mediumtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Daten für Tabelle `plangs`
-- Indizes der exportierten Tabellen
--
INSERT INTO `plangs` (`internalName`, `compile`, `exec`, `hardTimeoutInMs`, `hardMemoryLimitInKb`, `hardDiskSpaceLimitInKb`, `extensions`) VALUES
('java', '\\"javac\\" \\"-encoding\\" \\"UTF8\\" \\"#5\\"', '\\"java\\" \\"-Dfile.encoding=UTF8\\" \\"-cp\\" \\"#1\\" \\"#2\\"', 1500, 2000, 2000, '["java"]');
--
-- Indizes der exportierten Tabellen
-- Indizes für die Tabelle `traceLog`
--
ALTER TABLE `traceLog`
ADD PRIMARY KEY (`id`);
--
-- Indizes für die Tabelle `plangs`
-- AUTO_INCREMENT für exportierte Tabellen
--
ALTER TABLE `plangs`
ADD PRIMARY KEY (`internalName`);
--
-- AUTO_INCREMENT für Tabelle `traceLog`
--
ALTER TABLE `traceLog`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
......@@ -3,9 +3,9 @@
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Erstellungszeit: 08. Mai 2019 um 18:36
-- Server-Version: 10.1.37-MariaDB-0+deb9u1
-- PHP-Version: 7.0.33-0+deb9u1
-- Erstellungszeit: 01. Mrz 2020 um 15:22
-- Server-Version: 10.1.41-MariaDB-0+deb9u1
-- PHP-Version: 7.0.33-0+deb9u6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
......
-- phpMyAdmin SQL Dump
-- version 4.6.6deb4
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Erstellungszeit: 01. Mrz 2020 um 15:19
-- Server-Version: 10.1.41-MariaDB-0+deb9u1
-- PHP-Version: 7.0.33-0+deb9u6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Datenbank: `yapexTestDb`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `config`
--
CREATE TABLE `config` (
`id` int(11) NOT NULL,
`workingDirFullPath` text NOT NULL,
`hardTimeoutInMs` int(11) NOT NULL,
`hardCompileTimeoutInMs` int(11) NOT NULL,
`hardMemoryLimitInKb` int(11) NOT NULL,
`hardDiskSpaceLimitInKb` int(11) NOT NULL,
`maxParallelTests` int(11) NOT NULL,
`maxNumberOfTestsWithOneRequest` int(11) NOT NULL,
`runner` text NOT NULL,
`showTestRunnerDebugOutput` tinyint(1) NOT NULL DEFAULT '0',
`insertTraceLogs` tinyint(1) NOT NULL DEFAULT '1',
`environmentVars` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Daten für Tabelle `config`
--
INSERT INTO `config` (`id`, `workingDirFullPath`, `hardTimeoutInMs`, `hardCompileTimeoutInMs`, `hardMemoryLimitInKb`, `hardDiskSpaceLimitInKb`, `maxParallelTests`, `maxNumberOfTestsWithOneRequest`, `runner`, `showTestRunnerDebugOutput`, `insertTraceLogs`, `environmentVars`) VALUES
(1, '/opt/yapex/_tests', 5000, 3000, 2000, 2000, 100, 15, '\"java\" -Dfile.encoding=UTF8 -cp \"/opt/yapex/LinuxSafeTestRunner/src\" Main', 0, 1, 'USER=yapextester\r\nHOME=/home/yapextester\r\nLANG=de_DE.UTF-8\r\nPATH=/usr/local/bin:/usr/bin:/bin');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `plangs`
--
CREATE TABLE `plangs` (
`internalName` varchar(100) NOT NULL,
`compile` text NOT NULL,
`exec` text NOT NULL,
`extensions` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Daten für Tabelle `plangs`
--
INSERT INTO `plangs` (`internalName`, `compile`, `exec`, `extensions`) VALUES
('c', '\"gcc\" \"#5\"', '\"#1/a.out\"', '[\"c\"]'),
('java', 'javac -encoding UTF8 #5\"', 'java -Dfile.encoding=UTF8 \"-cp\" \"#1\" \"#2\"', '[\"java\"]');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `traceLog`
--
CREATE TABLE `traceLog` (
`id` int(11) NOT NULL,
`dateTime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`traceString` text NOT NULL,
`processString` text NOT NULL,
`sourceCode` mediumtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `transactions`
--
CREATE TABLE `transactions` (
`id` varchar(50) NOT NULL,
`rootDirName` varchar(50) NOT NULL,
`testType` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indizes der exportierten Tabellen
--
--
-- Indizes für die Tabelle `config`
--
ALTER TABLE `config`
ADD PRIMARY KEY (`id`);
--
-- Indizes für die Tabelle `plangs`
--
ALTER TABLE `plangs`
ADD PRIMARY KEY (`internalName`);
--
-- Indizes für die Tabelle `traceLog`
--
ALTER TABLE `traceLog`
ADD PRIMARY KEY (`id`);
--
-- Indizes für die Tabelle `transactions`
--
ALTER TABLE `transactions`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT für exportierte Tabellen
--
--
-- AUTO_INCREMENT für Tabelle `traceLog`
--
ALTER TABLE `traceLog`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=265677;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
{
"dbServer": "localhost:8889",
"dbName": "syndromTestDb",
"dbName": "yapexTestDb",
"dbUser": "tester",
"dbPw": "mysqlpassword2",
"dbPLangTableName": "plangs",
......@@ -12,7 +12,7 @@
"useConfigFromDb": true,
"dbConfigServer": "localhost:8889",
"dbConfigName": "syndromTestDb",
"dbConfigName": "yapexTestDb",
"dbConfigUser": "tester",
"dbConfigPw": "mysqlpassword2",
"dbConfigTableName": "config"
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment