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.

CeDatabaseMBeanImplTest.java 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2021 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. package org.sonar.ce.monitoring;
  21. import java.lang.management.ManagementFactory;
  22. import javax.annotation.CheckForNull;
  23. import javax.management.InstanceNotFoundException;
  24. import javax.management.ObjectInstance;
  25. import javax.management.ObjectName;
  26. import org.junit.Rule;
  27. import org.junit.Test;
  28. import org.sonar.api.utils.System2;
  29. import org.sonar.db.DbTester;
  30. import org.sonar.process.systeminfo.protobuf.ProtobufSystemInfo;
  31. import static org.assertj.core.api.Assertions.assertThat;
  32. public class CeDatabaseMBeanImplTest {
  33. @Rule
  34. public DbTester dbTester = DbTester.create(System2.INSTANCE);
  35. private CeDatabaseMBeanImpl underTest = new CeDatabaseMBeanImpl(dbTester.getDbClient());
  36. @Test
  37. public void register_and_unregister() throws Exception {
  38. assertThat(getMBean()).isNull();
  39. underTest.start();
  40. assertThat(getMBean()).isNotNull();
  41. underTest.stop();
  42. assertThat(getMBean()).isNull();
  43. }
  44. @Test
  45. public void export_system_info() {
  46. ProtobufSystemInfo.Section section = underTest.toProtobuf();
  47. assertThat(section.getName()).isEqualTo("Compute Engine Database Connection");
  48. assertThat(section.getAttributesCount()).isEqualTo(9);
  49. assertThat(section.getAttributes(0).getKey()).isEqualTo("Pool Initial Size");
  50. assertThat(section.getAttributes(0).getLongValue()).isGreaterThanOrEqualTo(0);
  51. }
  52. @CheckForNull
  53. private ObjectInstance getMBean() throws Exception {
  54. try {
  55. return ManagementFactory.getPlatformMBeanServer().getObjectInstance(new ObjectName(CeDatabaseMBean.OBJECT_NAME));
  56. } catch (InstanceNotFoundException e) {
  57. return null;
  58. }
  59. }
  60. }