Files
librenms-librenms/tests/Unit/Data/PrometheusStoreTest.php
Tony Murray 04bb75f5f3 Alert transport cleanup, no_proxy support and other proxy cleanups (#14763)
* Add no_proxy and other proxy related settings
Set user agent on all http client requests
Unify http client usage

* Style fixes

* Remove useless use statements

* Correct variable, good job phpstan

* Add tests
fix https_proxy bug
add tcp:// to the config settings format

* style and lint fixes

* Remove guzzle from the direct dependencies

* Use built in Laravel testing functionality

* update baseline
2023-05-23 09:25:17 -05:00

82 lines
2.5 KiB
PHP

<?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
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2018 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Tests\Unit\Data;
use Illuminate\Support\Facades\Http as LaravelHttp;
use LibreNMS\Config;
use LibreNMS\Data\Store\Prometheus;
use LibreNMS\Tests\TestCase;
/**
* @group datastores
*/
class PrometheusStoreTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
Config::set('prometheus.enable', true);
Config::set('prometheus.url', 'http://fake:9999');
}
public function testFailWrite(): void
{
LaravelHttp::fakeSequence()->push('Bad response', 422);
$prometheus = app(Prometheus::class);
\Log::shouldReceive('debug');
\Log::shouldReceive('error')->once()->with('Prometheus Error: Bad response');
$prometheus->put(['hostname' => 'test'], 'none', [], ['one' => 1]);
}
public function testSimpleWrite(): void
{
LaravelHttp::fake([
'*' => LaravelHttp::response(),
]);
$prometheus = app(Prometheus::class);
$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);
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";
});
}
}