You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
477 lines
7.9 KiB
477 lines
7.9 KiB
<?php
|
|
/*
|
|
** Zabbix
|
|
** Copyright (C) 2001-2023 Zabbix SIA
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
**/
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CTimePeriodParserTest extends TestCase {
|
|
|
|
/**
|
|
* An array of time periods and parsed results.
|
|
*/
|
|
public static function dataProvider() {
|
|
return [
|
|
// success
|
|
[
|
|
'1-7,00:00-23:00', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '1-7,00:00-23:00'
|
|
]
|
|
],
|
|
[
|
|
'5-5,00:00-23:00', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '5-5,00:00-23:00'
|
|
]
|
|
],
|
|
[
|
|
'7,00:00-23:00', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '7,00:00-23:00'
|
|
]
|
|
],
|
|
[
|
|
'7,23:59-24:00', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '7,23:59-24:00'
|
|
]
|
|
],
|
|
[
|
|
'7,0:00-0:01', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '7,0:00-0:01'
|
|
]
|
|
],
|
|
[
|
|
'7,0:00-00:01', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '7,0:00-00:01'
|
|
]
|
|
],
|
|
[
|
|
'7,00:00-0:01', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '7,00:00-0:01'
|
|
]
|
|
],
|
|
[
|
|
'{$M}', 0, ['usermacros' => true],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '{$M}'
|
|
]
|
|
],
|
|
[
|
|
'{$M: "context"}', 0, ['usermacros' => true],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '{$M: "context"}'
|
|
]
|
|
],
|
|
[
|
|
'{$M: ";"}', 0, ['usermacros' => true],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '{$M: ";"}'
|
|
]
|
|
],
|
|
[
|
|
'{$M: "/"}', 0, ['usermacros' => true],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '{$M: "/"}'
|
|
]
|
|
],
|
|
[
|
|
'{#M}', 0, ['lldmacros' => true],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '{#M}'
|
|
]
|
|
],
|
|
[
|
|
'{{#M}.regsub("^([0-9]+)", "{#M}: \1")}', 0, ['lldmacros' => true],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS,
|
|
'match' => '{{#M}.regsub("^([0-9]+)", "{#M}: \1")}'
|
|
]
|
|
],
|
|
// partial success
|
|
[
|
|
'random text.....1-7,00:00-00:01....text', 16, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS_CONT,
|
|
'match' => '1-7,00:00-00:01'
|
|
]
|
|
],
|
|
[
|
|
'1-7,00:00-00:011', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS_CONT,
|
|
'match' => '1-7,00:00-00:01'
|
|
]
|
|
],
|
|
[
|
|
'1-7,00:00-00:01a', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS_CONT,
|
|
'match' => '1-7,00:00-00:01'
|
|
]
|
|
],
|
|
[
|
|
'1-7,00:00-00:01;', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_SUCCESS_CONT,
|
|
'match' => '1-7,00:00-00:01'
|
|
]
|
|
],
|
|
// fail
|
|
[
|
|
'', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'a', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'11', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1a', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-a', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1--', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1- ', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1 -', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1 ', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1, ', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,1', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,1a', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11a', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:a', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:1', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11-', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11 ', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11- ', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11--', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11-1', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11-11', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11-11:', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11-11:1', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-1,11:11-11:11', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'8,11:11-11:12', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'7-3,11:11-11:12', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-7,00:00-24:01', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-7,12:00-11:59', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-7,00:00-24:0', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'1-7,00:0-24:00', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
// User macros are not enabled.
|
|
[
|
|
'{$M}', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'{$M: "context"}', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'{$M: ";"}', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'{$M: "/"}', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
// LLD macros are not enabled.
|
|
[
|
|
'{#M}', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
],
|
|
[
|
|
'{{#M}.regsub("^([0-9]+)", "{#M}: \1")}', 0, [],
|
|
[
|
|
'rc' => CParser::PARSE_FAIL,
|
|
'match' => ''
|
|
]
|
|
]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataProvider
|
|
*
|
|
* @param string $source
|
|
* @param int $pos
|
|
* @param array $options
|
|
* @param array $expected
|
|
*/
|
|
public function testParse($source, $pos, $options, $expected) {
|
|
$parser = new CTimePeriodParser($options);
|
|
|
|
$this->assertSame($expected, [
|
|
'rc' => $parser->parse($source, $pos),
|
|
'match' => $parser->getMatch()
|
|
]);
|
|
$this->assertSame(strlen($expected['match']), $parser->getLength());
|
|
}
|
|
}
|