lusers: Assert GlobalInvisible and GlobalVisible are lower or equal to the total

This commit is contained in:
2021-02-24 13:30:13 +01:00
committed by Valentin Lorentz
parent fb04da39cc
commit f92b0e2889

View File

@ -42,6 +42,8 @@ class LusersTestCase(cases.BaseServerTestCase):
self.assertGreaterEqual(lusers.GlobalInvisible, 0)
self.assertGreaterEqual(lusers.GlobalVisible, 0)
self.assertLessEqual(lusers.GlobalInvisible, total)
self.assertLessEqual(lusers.GlobalVisible, total)
self.assertEqual(lusers.GlobalInvisible + lusers.GlobalVisible, total)
self.assertEqual(lusers.LocalTotal, total)