We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e57cd82 commit 171886eCopy full SHA for 171886e
api/tacticalrmm/core/tests.py
@@ -500,3 +500,14 @@ def test_get_meshagent_url_docker(self):
500
r,
501
"http://tactical-meshcentral:4443/meshagents?id=4&meshid=abc123&installflags=0",
502
)
503
+
504
505
+class TestMonitoring(TacticalTestCase):
506
+ def setUp(self):
507
+ self.setup_client()
508
+ self.setup_coresettings()
509
510
+ def test_invalid_monitoring_request(self):
511
+ url = "/core/status/"
512
+ r = self.client.get(url)
513
+ self.assertEqual(r.status_code, 400)
0 commit comments