More test methods and slight modifications to UglyQueue

This commit is contained in:
2014-08-10 10:52:59 -05:00
parent d63950b5f5
commit 728c6a5a7d
4 changed files with 196 additions and 35 deletions

View File

@@ -43,6 +43,8 @@ class UglyQueue
throw new \RuntimeException('UglyQueue::__construct - "$config[\'queue-base-dir\']" points to a directory that either doesn\'t exist or is not writable');
$this->config = $config;
$this->queueBaseDir = $this->config['queue-base-dir'];
}
/**
@@ -130,14 +132,12 @@ class UglyQueue
}
/**
* @param string $queue_group
* @param string $queueGroup
*/
public function initialize($queue_group)
public function initialize($queueGroup)
{
$this->queueBaseDir = $this->config['queue-base-dir'];
$this->queueGroup = $queue_group;
$this->queueGroupDirPath = $this->queueBaseDir.$queue_group.DIRECTORY_SEPARATOR;
$this->queueGroup = $queueGroup;
$this->queueGroupDirPath = $this->queueBaseDir.$queueGroup.DIRECTORY_SEPARATOR;
// Create directory for this queue group
if (!is_dir($this->queueGroupDirPath))
@@ -293,22 +293,6 @@ HTML;
}
}
/**
* @return string
*/
public function getQueueGroup()
{
return $this->queueGroup;
}
/**
* @return string
*/
public function getQueueBaseDir()
{
return $this->queueBaseDir;
}
/**
* @return int|null
* @throws \RuntimeException
@@ -352,4 +336,36 @@ HTML;
fclose($queue_file_handle);
return false;
}
/**
* @return boolean
*/
public function getInit()
{
return $this->init;
}
/**
* @return string
*/
public function getQueueBaseDir()
{
return $this->queueBaseDir;
}
/**
* @return string
*/
public function getQueueGroupDirPath()
{
return $this->queueGroupDirPath;
}
/**
* @return string
*/
public function getQueueGroup()
{
return $this->queueGroup;
}
}