2020-03-16 09:17:58 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* PrometheusStoreTest.php
|
|
|
|
|
*
|
|
|
|
|
* -Description-
|
|
|
|
|
*
|
|
|
|
|
* 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 3 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
|
2021-02-09 00:29:04 +01:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-03-16 09:17:58 -05:00
|
|
|
*
|
2021-02-09 00:29:04 +01:00
|
|
|
* @link https://www.librenms.org
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2020-03-16 09:17:58 -05:00
|
|
|
* @copyright 2018 Tony Murray
|
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace LibreNMS\Tests\Unit\Data;
|
|
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
use Illuminate\Support\Facades\Http as LaravelHttp;
|
2020-03-16 09:17:58 -05:00
|
|
|
use LibreNMS\Config;
|
|
|
|
|
use LibreNMS\Data\Store\Prometheus;
|
|
|
|
|
use LibreNMS\Tests\TestCase;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @group datastores
|
|
|
|
|
*/
|
|
|
|
|
class PrometheusStoreTest extends TestCase
|
|
|
|
|
{
|
2020-05-19 16:31:50 +02:00
|
|
|
protected function setUp(): void
|
2020-03-16 09:17:58 -05:00
|
|
|
{
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
|
|
Config::set('prometheus.enable', true);
|
|
|
|
|
Config::set('prometheus.url', 'http://fake:9999');
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
public function testFailWrite(): void
|
2020-03-16 09:17:58 -05:00
|
|
|
{
|
2023-05-23 09:25:17 -05:00
|
|
|
LaravelHttp::fakeSequence()->push('Bad response', 422);
|
2021-11-03 13:37:57 -05:00
|
|
|
$prometheus = app(Prometheus::class);
|
2020-03-16 09:17:58 -05:00
|
|
|
|
|
|
|
|
\Log::shouldReceive('debug');
|
2023-05-23 09:25:17 -05:00
|
|
|
\Log::shouldReceive('error')->once()->with('Prometheus Error: Bad response');
|
2020-03-16 09:17:58 -05:00
|
|
|
$prometheus->put(['hostname' => 'test'], 'none', [], ['one' => 1]);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
public function testSimpleWrite(): void
|
2020-03-16 09:17:58 -05:00
|
|
|
{
|
2023-05-23 09:25:17 -05:00
|
|
|
LaravelHttp::fake([
|
|
|
|
|
'*' => LaravelHttp::response(),
|
2021-11-03 13:37:57 -05:00
|
|
|
]);
|
2020-03-16 09:17:58 -05:00
|
|
|
|
2021-11-03 13:37:57 -05:00
|
|
|
$prometheus = app(Prometheus::class);
|
2020-03-16 09:17:58 -05:00
|
|
|
|
|
|
|
|
$device = ['hostname' => 'testhost'];
|
|
|
|
|
$measurement = 'testmeasure';
|
|
|
|
|
$tags = ['ifName' => 'testifname', 'type' => 'testtype'];
|
|
|
|
|
$fields = ['ifIn' => 234234, 'ifOut' => 53453];
|
|
|
|
|
|
|
|
|
|
\Log::shouldReceive('debug');
|
|
|
|
|
\Log::shouldReceive('error')->times(0);
|
|
|
|
|
|
|
|
|
|
$prometheus->put($device, $measurement, $tags, $fields);
|
|
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
LaravelHttp::assertSentCount(1);
|
|
|
|
|
LaravelHttp::assertSent(function (\Illuminate\Http\Client\Request $request) {
|
|
|
|
|
return $request->method() == 'POST' &&
|
|
|
|
|
$request->url() == 'http://fake:9999/metrics/job/librenms/instance/testhost/measurement/testmeasure/ifName/testifname/type/testtype' &&
|
|
|
|
|
$request->body() == "ifIn 234234\nifOut 53453\n";
|
|
|
|
|
});
|
2020-03-16 09:17:58 -05:00
|
|
|
}
|
|
|
|
|
}
|