Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
00d0ea624f | ||
|
2f87752f6e | ||
|
346e5c239b | ||
|
9d78b4a8eb |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
vendor/
|
vendor/
|
||||||
main.uml
|
main.uml
|
||||||
composer.lock
|
composer.lock
|
||||||
|
.phpunit.result.cache
|
||||||
|
@@ -26,10 +26,10 @@
|
|||||||
"symfony/config": "3.4",
|
"symfony/config": "3.4",
|
||||||
"symfony/process": "^3.4",
|
"symfony/process": "^3.4",
|
||||||
"monolog/monolog": "^2.0",
|
"monolog/monolog": "^2.0",
|
||||||
"symfony/yaml": "^5.0"
|
"symfony/yaml": "~3.0|~4.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^7.4"
|
"phpunit/phpunit": "^8.5.3"
|
||||||
},
|
},
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
|
7
config.yaml
Executable file
7
config.yaml
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
logger:
|
||||||
|
file: /home/aerex/baikal-storage-plugin.log
|
||||||
|
level: 'DEBUG'
|
||||||
|
taskwarrior:
|
||||||
|
taskdata: /home/aerex/.task
|
||||||
|
taskrc: /home/aerex/.taskrc
|
||||||
|
project_tag_suffix: project_
|
@@ -9,10 +9,10 @@ use Symfony\Component\Yaml\Yaml;
|
|||||||
|
|
||||||
class ConfigBuilder implements ConfigurationInterface {
|
class ConfigBuilder implements ConfigurationInterface {
|
||||||
private $configs = [];
|
private $configs = [];
|
||||||
private $configDir;
|
private $configFile;
|
||||||
|
|
||||||
public function __construct($configDir) {
|
public function __construct($configFile) {
|
||||||
$this->configDir = $configDir;
|
$this->configFile = $configFile;
|
||||||
$this->processor = new Processor();
|
$this->processor = new Processor();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -23,7 +23,21 @@ class ConfigBuilder implements ConfigurationInterface {
|
|||||||
public function getConfigTreeBuilder() {
|
public function getConfigTreeBuilder() {
|
||||||
$treeBuilder = new TreeBuilder();
|
$treeBuilder = new TreeBuilder();
|
||||||
$rootNode = $treeBuilder->root('configs');
|
$rootNode = $treeBuilder->root('configs');
|
||||||
$ref = $rootNode->children();
|
$ref = $rootNode->children()
|
||||||
|
->arrayNode('logger')
|
||||||
|
->canBeEnabled()
|
||||||
|
->children()
|
||||||
|
->scalarNode('file')->end()
|
||||||
|
->scalarNode('level')
|
||||||
|
->defaultValue('ERROR')
|
||||||
|
->validate()
|
||||||
|
->IfNotInArray(['DEBUG', 'INFO', 'NOTICE', 'WARNING', 'ERROR', 'CRITICAL', 'ALERT', 'EMERGENCY'])
|
||||||
|
->thenInvalid('Invalid log level %s')
|
||||||
|
->end()
|
||||||
|
->end()
|
||||||
|
->end()
|
||||||
|
->end();
|
||||||
|
|
||||||
foreach ($this->configs as $config) {
|
foreach ($this->configs as $config) {
|
||||||
$ref = $ref->append($config->get());
|
$ref = $ref->append($config->get());
|
||||||
}
|
}
|
||||||
@@ -32,8 +46,7 @@ class ConfigBuilder implements ConfigurationInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function readContent() {
|
public function readContent() {
|
||||||
$contents = sprintf('%s/storage.yaml', $this->configDir);
|
return file_get_contents($this->configFile);
|
||||||
return file_get_contents($contents);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function loadYaml() {
|
public function loadYaml() {
|
||||||
|
@@ -2,21 +2,24 @@
|
|||||||
|
|
||||||
namespace Aerex\BaikalStorage\Configs;
|
namespace Aerex\BaikalStorage\Configs;
|
||||||
|
|
||||||
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
|
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
|
||||||
|
|
||||||
class TaskwarriorConfig {
|
class TaskwarriorConfig {
|
||||||
public function get() {
|
public function get() {
|
||||||
$treeBuilder = new TreeBuilder();
|
$node = new ArrayNodeDefinition('taskwarrior');
|
||||||
$node = $treeBuilder->root('taskwarrior');
|
$node->canBeEnabled()
|
||||||
$node->children()
|
->children()
|
||||||
->scalarNode('taskdata')
|
->scalarNode('taskdata')
|
||||||
->defaultValue('~/.task')
|
->defaultValue('~/.task')
|
||||||
->end()
|
->end()
|
||||||
->scalarNode('taskrc')
|
->scalarNode('taskrc')
|
||||||
->defaultValue('~/.taskrc')
|
->defaultValue('~/.taskrc')
|
||||||
->end()
|
->end()
|
||||||
->end();
|
->scalarNode('project_tag_suffix')
|
||||||
|
->defaultValue('project_')
|
||||||
|
->end()
|
||||||
|
->end();
|
||||||
|
|
||||||
return $node;
|
return $node;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -23,7 +23,7 @@ class Console extends AbstractConsole {
|
|||||||
$stdin = array_merge($stdin, $this->defaultArgs, $args);
|
$stdin = array_merge($stdin, $this->defaultArgs, $args);
|
||||||
|
|
||||||
if (isset($input)) {
|
if (isset($input)) {
|
||||||
$stdin[] = $this->convertToString($input);
|
$input = $this->convertToString($input);
|
||||||
}
|
}
|
||||||
$process = new Process(implode(' ', $stdin), $input, $envs);
|
$process = new Process(implode(' ', $stdin), $input, $envs);
|
||||||
$process->inheritEnvironmentVariables();
|
$process->inheritEnvironmentVariables();
|
||||||
@@ -32,7 +32,6 @@ class Console extends AbstractConsole {
|
|||||||
$process->mustRun();
|
$process->mustRun();
|
||||||
return $process->getOutput();
|
return $process->getOutput();
|
||||||
} catch (ProcessFailedException $error) {
|
} catch (ProcessFailedException $error) {
|
||||||
echo $error->getMessage();
|
|
||||||
throw $error;
|
throw $error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
63
lib/Logger.php
Normal file
63
lib/Logger.php
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Aerex\BaikalStorage;
|
||||||
|
use Monolog\Logger as Monolog;
|
||||||
|
use Monolog\Handler\StreamHandler;
|
||||||
|
|
||||||
|
class Logger {
|
||||||
|
|
||||||
|
private $configs = ['enabled' => false];
|
||||||
|
|
||||||
|
function __construct($configs, $tag) {
|
||||||
|
if (isset($configs['logger'])) {
|
||||||
|
$this->configs = $configs['logger'];
|
||||||
|
}
|
||||||
|
if ($this->configs['enabled']) {
|
||||||
|
$this->logger = new Monolog($tag);
|
||||||
|
$logLevel = Monolog::getLevels()[$this->configs['level']];
|
||||||
|
$this->logger->pushHandler(new StreamHandler($this->configs['file'], $logLevel));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function debug($message) {
|
||||||
|
if ($this->configs['enabled']) {
|
||||||
|
$this->logger->debug($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function info($message) {
|
||||||
|
if ($this->configs['enabled']) {
|
||||||
|
$this->logger->info($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function notice($message) {
|
||||||
|
if ($this->configs['enabled']) {
|
||||||
|
$this->logger->notice($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function error($message) {
|
||||||
|
if ($this->configs['enabled']) {
|
||||||
|
$this->logger->error($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function critical($message) {
|
||||||
|
if ($this->configs['enabled']) {
|
||||||
|
$this->logger->critical($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public function alert($message) {
|
||||||
|
if ($this->configs['enabled']) {
|
||||||
|
$this->logger->alert($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function emergency($message) {
|
||||||
|
if ($this->configs['enabled']) {
|
||||||
|
$this->logger->emergency($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -38,14 +38,14 @@ class Plugin extends ServerPlugin {
|
|||||||
* @param CalendarProcessor $TWCalManager
|
* @param CalendarProcessor $TWCalManager
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
function __construct($configDir){
|
function __construct($configFile){
|
||||||
$configs = $this->buildConfigurations($configDir);
|
$configs = $this->buildConfigurations($configFile);
|
||||||
$this->storageManager = new StorageManager($configs);
|
$this->storageManager = new StorageManager($configs);
|
||||||
$this->initializeStorages($configDir, $configs);
|
$this->initializeStorages($configs);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildConfigurations($configDir) {
|
public function buildConfigurations($configFile) {
|
||||||
$this->config = new ConfigBuilder($configDir);
|
$this->config = new ConfigBuilder($configFile);
|
||||||
$this->config->add(new TaskwarriorConfig());
|
$this->config->add(new TaskwarriorConfig());
|
||||||
return $this->config->loadYaml();
|
return $this->config->loadYaml();
|
||||||
}
|
}
|
||||||
@@ -55,8 +55,8 @@ class Plugin extends ServerPlugin {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public function initializeStorages($configDir, $configs) {
|
public function initializeStorages($configs) {
|
||||||
$taskwarrior = new Taskwarrior(new Console(['rc.verbose=nothing', 'rc.hooks=off']), $configDir, $configs);
|
$taskwarrior = new Taskwarrior(new Console(['rc.verbose=nothing', 'rc.hooks=off']), $configs);
|
||||||
$this->storageManager->addStorage(Taskwarrior::NAME, $taskwarrior);
|
$this->storageManager->addStorage(Taskwarrior::NAME, $taskwarrior);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -3,19 +3,20 @@
|
|||||||
namespace Aerex\BaikalStorage\Storages;
|
namespace Aerex\BaikalStorage\Storages;
|
||||||
|
|
||||||
use Sabre\VObject\Component\VCalendar as Calendar;
|
use Sabre\VObject\Component\VCalendar as Calendar;
|
||||||
|
use Aerex\BaikalStorage\Logger;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
|
|
||||||
class Taskwarrior implements IStorage {
|
class Taskwarrior implements IStorage {
|
||||||
|
|
||||||
private const DATA_FILES = ['pending.data', 'completed.data', 'undo.data'];
|
|
||||||
public const NAME = 'taskwarrior';
|
public const NAME = 'taskwarrior';
|
||||||
private $tasks = [];
|
private $tasks = [];
|
||||||
private $configDir;
|
|
||||||
private $configs;
|
private $configs;
|
||||||
public function __construct($console, $configDir, $configs) {
|
private $logger;
|
||||||
|
|
||||||
|
public function __construct($console, $configs) {
|
||||||
$this->console = $console;
|
$this->console = $console;
|
||||||
$this->configDir = $configDir;
|
|
||||||
$this->configs = $configs['taskwarrior'];
|
$this->configs = $configs['taskwarrior'];
|
||||||
|
$this->logger = new Logger($configs, 'Taskwarrior');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getConfig() {
|
public function getConfig() {
|
||||||
@@ -23,45 +24,29 @@ class Taskwarrior implements IStorage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function refresh() {
|
public function refresh() {
|
||||||
$fp = fopen(sprintf('%s/taskwarrior-baikal-storage.lock', $this->configDir), 'a');
|
$output = $this->console->execute('task', ['sync'], null,
|
||||||
|
['TASKRC' => $this->configs['taskrc'],'TASKDATA' => $this->configs['taskdata']]);
|
||||||
if (!$fp || !flock($fp, LOCK_EX | LOCK_NB, $eWouldBlock) || $eWouldBlock) {
|
$tasks = json_decode($this->console->execute('task', ['export'], null,
|
||||||
fputs(STDERR, 'Could not get lock');
|
|
||||||
}
|
|
||||||
|
|
||||||
$mtime = 0;
|
|
||||||
$tasksUpdated = false;
|
|
||||||
foreach (Taskwarrior::DATA_FILES as $dataFile) {
|
|
||||||
$fmtime = filemtime(sprintf('%s/%s', $this->configs['taskdata'], $dataFile));
|
|
||||||
if ($fmtime > $mtime) {
|
|
||||||
$mtime = $fmtime;
|
|
||||||
$tasksUpdated = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($tasksUpdated) {
|
|
||||||
$tasks = json_decode($this->console->execute('task', ['export'], null,
|
|
||||||
['TASKRC' => $this->configs['taskrc'], 'TASKDATA' => $this->configs['taskdata']]), true);
|
['TASKRC' => $this->configs['taskrc'], 'TASKDATA' => $this->configs['taskdata']]), true);
|
||||||
foreach ($tasks as $task) {
|
foreach ($tasks as $task) {
|
||||||
$this->tasks[$task['uuid']] = $task;
|
if (isset($task['uid'])) {
|
||||||
|
$this->tasks[$task['uid']] = $task;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
$this->logger->info($output);
|
||||||
fclose($fp);
|
|
||||||
unlink(sprintf('%s/taskwarrior-baikal-storage.lock', $this->configDir));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function vObjectToTask($vtodo) {
|
public function vObjectToTask($vtodo) {
|
||||||
if (isset($this->tasks['uid']) && $this->tasks['uid'] == $vtodo->UID) {
|
if (isset($this->tasks[(string)$vtodo->UID])) {
|
||||||
$task = $this->tasks['uid'];
|
$task = $this->tasks[(string)$vtodo->UID];
|
||||||
} else {
|
} else {
|
||||||
$task = [];
|
$task = [];
|
||||||
$task['uid'] = (string)$vtodo->UID;
|
$task['uid'] = (string)$vtodo->UID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($vtodo->SUMMARY)){
|
||||||
if (!isset($vtodo->DESCRIPTION) && isset($vtodo->SUMMARY)){
|
|
||||||
$task['description'] = (string)$vtodo->SUMMARY;
|
$task['description'] = (string)$vtodo->SUMMARY;
|
||||||
} else {
|
} else if(isset($vtodo->DESCRIPTION)) {
|
||||||
$task['description'] = (string)$vtodo->DESCRIPTION;
|
$task['description'] = (string)$vtodo->DESCRIPTION;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -108,49 +93,59 @@ class Taskwarrior implements IStorage {
|
|||||||
|
|
||||||
if (isset($vtodo->STATUS)) {
|
if (isset($vtodo->STATUS)) {
|
||||||
switch((string)$vtodo->STATUS) {
|
switch((string)$vtodo->STATUS) {
|
||||||
case 'NEEDS-ACTION':
|
case 'NEEDS-ACTION':
|
||||||
$task['status'] = 'pending';
|
$task['status'] = 'pending';
|
||||||
break;
|
break;
|
||||||
case 'COMPLETED':
|
case 'COMPLETED':
|
||||||
$task['status'] = 'completed';
|
$task['status'] = 'completed';
|
||||||
if (!isset($task['end'])) {
|
if (!isset($task['end'])) {
|
||||||
$task['end'] = new Carbon($vtodo->DTSTAMP->getDateTime()->format(\DateTime::W3C));
|
$task['end'] = new Carbon($vtodo->DTSTAMP->getDateTime()->format(\DateTime::W3C));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'CANCELED':
|
case 'CANCELED':
|
||||||
$task['status'] = 'deleted';
|
$task['status'] = 'deleted';
|
||||||
if (!isset($task['end'])) {
|
if (!isset($task['end'])) {
|
||||||
$task['end'] = new Carbon($vtodo->DTSTAMP->getDateTime()->format(\DateTime::W3C));
|
$task['end'] = new Carbon($vtodo->DTSTAMP->getDateTime()->format(\DateTime::W3C));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($vtodo->CATEGORIES)) {
|
if (isset($vtodo->CATEGORIES)) {
|
||||||
$task['tags'] = [];
|
$task['tags'] = [];
|
||||||
foreach ($vtodo->CATEGORIES as $category) {
|
foreach ($vtodo->CATEGORIES as $category) {
|
||||||
if (isset($this->configs['project_tag_suffix'])) {
|
if (isset($this->configs['project_tag_suffix'])) {
|
||||||
$projTagSuffixRegExp = sprintf('/^%s_/', $this->configs['project_tag_suffix']);
|
$projTagSuffixRegExp = sprintf('/^%s/', $this->configs['project_tag_suffix']);
|
||||||
if (preg_match($category, $projTagSuffixRegExp)) {
|
if (preg_match($projTagSuffixRegExp, $category)) {
|
||||||
$task['project'] = preg_replace($projTagSuffixRegExp, '', $category);
|
$task['project'] = preg_replace($projTagSuffixRegExp, '', $category);
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
$task['tags'] = $category;
|
||||||
}
|
}
|
||||||
$task['tags'] = $category;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $task;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function save(Calendar $c) {
|
return $task;
|
||||||
if (!isset($c->VTODO)){
|
}
|
||||||
throw new \Exception('Calendar event does not contain VTODO');
|
|
||||||
}
|
public function save(Calendar $c) {
|
||||||
$this->refresh();
|
try {
|
||||||
$task = $this->vObjectToTask($c->VTODO);
|
if (!isset($c->VTODO)){
|
||||||
$this->console->execute('task', ['import'], $task,
|
throw new \Exception('Calendar event does not contain VTODO');
|
||||||
['TASKRC' => $this->configs['taskrc'],'TASKDATA' => $this->configs['taskdata']]);
|
}
|
||||||
}
|
$this->logger->info(json_encode($c->jsonSerialize()));
|
||||||
|
$this->refresh();
|
||||||
|
$task = $this->vObjectToTask($c->VTODO);
|
||||||
|
$this->logger->info(json_encode($task));
|
||||||
|
$this->logger->info(
|
||||||
|
sprintf('Executing TASKRC = %s TASKDATA = %s task import %s', $this->configs['taskrc'], $this->configs['taskdata'], json_encode($task))
|
||||||
|
);
|
||||||
|
$output = $this->console->execute('task', ['import'], $task,
|
||||||
|
['TASKRC' => $this->configs['taskrc'],'TASKDATA' => $this->configs['taskdata']]);
|
||||||
|
$this->logger->info($output);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$this->logger->error($e->getTraceAsString());
|
||||||
|
throw $e;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
50
tests/Configs/ConfigTest.php
Normal file
50
tests/Configs/ConfigTest.php
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
namespace Aerex\BaikalStorage;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
use Aerex\BaikalStorage\Configs\ConfigBuilder;
|
||||||
|
use Aerex\BaikalStorage\Configs\TaskwarriorConfig;
|
||||||
|
|
||||||
|
class ConfigTest extends TestCase {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
||||||
|
* */
|
||||||
|
|
||||||
|
public $mockConfigBuilder;
|
||||||
|
|
||||||
|
public function testLoggerConfigs() {
|
||||||
|
$configs = new ConfigBuilder(__DIR__ . '/Fixtures/LoggerConfig.yaml');
|
||||||
|
$contents = $configs->loadYaml();
|
||||||
|
$this->assertEquals(sizeof($contents), 1);
|
||||||
|
$this->assertArrayHasKey('logger', $contents, 'config missing logger property');
|
||||||
|
$this->assertArrayHasKey('file', $contents['logger'], 'config missing logger.file property');
|
||||||
|
$this->assertEquals($contents['logger']['file'], '/home/user/logger.yaml');
|
||||||
|
$this->assertArrayHasKey('level', $contents['logger'], 'config missing logger.level property');
|
||||||
|
$this->assertEquals($contents['logger']['level'], 'ERROR', 'ERROR is not set as default logger level');
|
||||||
|
$this->assertArrayHasKey('enabled', $contents['logger'], 'config missing logger.enabled property');
|
||||||
|
$this->assertTrue($contents['logger']['enabled']);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testTaskwarriorConfig() {
|
||||||
|
$configs = new ConfigBuilder(__DIR__ . '/Fixtures/TaskwarriorConfig.yaml');
|
||||||
|
$configs->add(new TaskwarriorConfig());
|
||||||
|
$contents = $configs->loadYaml();
|
||||||
|
$this->assertEquals(sizeof($contents), 2);
|
||||||
|
$this->assertArrayHasKey('logger', $contents, 'config missing logger property');
|
||||||
|
$this->assertArrayHasKey('file', $contents['logger'], 'config missing logger.file property');
|
||||||
|
$this->assertArrayHasKey('level', $contents['logger'], 'config missing logger.level property');
|
||||||
|
$this->assertArrayHasKey('enabled', $contents['logger'], 'config missing logger.enabled property');
|
||||||
|
$this->assertArrayHasKey('taskwarrior', $contents, 'config missing taskwarrior property');
|
||||||
|
$this->assertArrayHasKey('taskrc', $contents['taskwarrior'], 'config missing taskwarrior.taskrc property');
|
||||||
|
$this->assertEquals($contents['taskwarrior']['taskrc'], '/home/aerex/.taskrc');
|
||||||
|
$this->assertArrayHasKey('taskdata', $contents['taskwarrior'], 'config missing taskwarrior.taskdata property');
|
||||||
|
$this->assertEquals($contents['taskwarrior']['taskdata'], '/home/aerex/.task');
|
||||||
|
$this->assertArrayHasKey('project_tag_suffix', $contents['taskwarrior'], 'config missing taskwarrior.taskdata property');
|
||||||
|
$this->assertEquals($contents['taskwarrior']['project_tag_suffix'], 'project_');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
2
tests/Configs/Fixtures/LoggerConfig.yaml
Executable file
2
tests/Configs/Fixtures/LoggerConfig.yaml
Executable file
@@ -0,0 +1,2 @@
|
|||||||
|
logger:
|
||||||
|
file: /home/user/logger.yaml
|
7
tests/Configs/Fixtures/TaskwarriorConfig.yaml
Executable file
7
tests/Configs/Fixtures/TaskwarriorConfig.yaml
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
logger:
|
||||||
|
file: /home/aerex/baikal-storage-plugin.log
|
||||||
|
level: DEBUG
|
||||||
|
taskwarrior:
|
||||||
|
taskdata: /home/aerex/.task
|
||||||
|
taskrc: /home/aerex/.taskrc
|
||||||
|
project_tag_suffix: project_
|
@@ -1,4 +0,0 @@
|
|||||||
taskwarrior:
|
|
||||||
taskdata: '/home/user/.task'
|
|
||||||
taskrc: '~/home/user/.taskrc'
|
|
||||||
project_tag_suffix: 'project_'
|
|
@@ -5,7 +5,6 @@ namespace Aerex\BaikalStorage;
|
|||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use Aerex\BaikalStorage\AbstractConsole;
|
use Aerex\BaikalStorage\AbstractConsole;
|
||||||
use Aerex\BaikalStorage\Configs\ConfigBuilder;
|
use Aerex\BaikalStorage\Configs\ConfigBuilder;
|
||||||
use Aerex\BaikalStorage\Configs\TaskwarriorConfig;
|
|
||||||
use Aerex\BaikalStorage\Storages\Taskwarrior;
|
use Aerex\BaikalStorage\Storages\Taskwarrior;
|
||||||
use Aerex\BaikalStorage\Storages\IStorage;
|
use Aerex\BaikalStorage\Storages\IStorage;
|
||||||
use Sabre\VObject\Component\VCalendar as Calendar;
|
use Sabre\VObject\Component\VCalendar as Calendar;
|
||||||
@@ -21,18 +20,18 @@ class StorageManagerTest extends TestCase {
|
|||||||
|
|
||||||
public $mockConfigBuilder;
|
public $mockConfigBuilder;
|
||||||
|
|
||||||
function setUp() {
|
protected function setUp(): void {
|
||||||
$this->mockConfigBuilder = $this->getMockBuilder(ConfigBuilder::class)
|
$this->mockConfigBuilder = $this->getMockBuilder(ConfigBuilder::class)
|
||||||
->setMethods(['readContent'])
|
->setMethods(['readContent'])
|
||||||
->setConstructorArgs([''])
|
->setConstructorArgs([''])
|
||||||
->getMock();
|
->getMock();
|
||||||
$this->mockConsole = $this->createMock(AbstractConsole::class);
|
$this->mockConsole = $this->createMock(AbstractConsole::class);
|
||||||
$this->mockStorage = $this->createMock(IStorage::class);
|
$this->mockStorage = $this->createMock(Taskwarrior::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testAddTaskwarriorStorage() {
|
public function testAddTaskwarriorStorage() {
|
||||||
$configs = ['taskwarrior' => ['taskrc' => '', 'taskdata' => '']];
|
$configs = ['taskwarrior' => ['taskrc' => '', 'taskdata' => '']];
|
||||||
$tw = new Taskwarrior($this->mockConsole, '', $configs);
|
$tw = new Taskwarrior($this->mockConsole, $configs);
|
||||||
$manager = new StorageManager($this->mockConfigBuilder);
|
$manager = new StorageManager($this->mockConfigBuilder);
|
||||||
$manager->addStorage(Taskwarrior::NAME, $tw);
|
$manager->addStorage(Taskwarrior::NAME, $tw);
|
||||||
$storages = $manager->getStorages();
|
$storages = $manager->getStorages();
|
||||||
|
@@ -14,13 +14,13 @@ class TaskwarriorTest extends TestCase {
|
|||||||
* */
|
* */
|
||||||
private $mockConsole;
|
private $mockConsole;
|
||||||
|
|
||||||
function setUp() {
|
protected function setUp(): void {
|
||||||
$this->mockConsole = $this->createMock(AbstractConsole::class);
|
$this->mockConsole = $this->createMock(AbstractConsole::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testVObjectToTask() {
|
public function testVObjectToTask() {
|
||||||
$configs = ['taskwarrior' => ['taskrc' => '', 'taskdata' => '']];
|
$configs = ['taskwarrior' => ['taskrc' => '', 'taskdata' => ''], 'logger' => ['file' => '', 'level'=> 'DEBUG', 'enabled' => true]];
|
||||||
$this->taskwarrior = new Taskwarrior($this->mockConsole, '', $configs);
|
$this->taskwarrior = new Taskwarrior($this->mockConsole, $configs);
|
||||||
$vcalendar = new Calendar([
|
$vcalendar = new Calendar([
|
||||||
'VTODO' => [
|
'VTODO' => [
|
||||||
'SUMMARY' => 'Finish project',
|
'SUMMARY' => 'Finish project',
|
||||||
@@ -33,7 +33,6 @@ class TaskwarriorTest extends TestCase {
|
|||||||
'RRULE' => 'FREQ=MONTHLY'
|
'RRULE' => 'FREQ=MONTHLY'
|
||||||
]
|
]
|
||||||
]);
|
]);
|
||||||
echo $vcalendar->VTODO->RRULE->getJsonValue()[0]['freq'];
|
|
||||||
|
|
||||||
$task = $this->taskwarrior->vObjectToTask($vcalendar->VTODO);
|
$task = $this->taskwarrior->vObjectToTask($vcalendar->VTODO);
|
||||||
$this->assertArrayHasKey('uid', $task, 'task should have a uid');
|
$this->assertArrayHasKey('uid', $task, 'task should have a uid');
|
||||||
|
Reference in New Issue
Block a user