Uploaded image for project: 'Sentry (Retired)'
  1. Sentry (Retired)
  2. SENTRY-1502

Multiple tests in TestSentryStore are not testing useful things

    XMLWordPrintableJSON

Details

    • Test
    • Status: Patch Available
    • Major
    • Resolution: Unresolved
    • 1.7.0, 2.0.0
    • None
    • Sentry

    Description

      I noticed that multiple unit tests in TestSentryStore are not testing useful things. For example:

      @Test
        public void testCreateDropRole() throws Exception {
          String roleName = "test-drop-role";
          long seqId = sentryStore.createSentryRole(roleName).getSequenceId();
          assertEquals(seqId + 1, sentryStore.dropSentryRole(roleName).getSequenceId());
        }
      

      So this code only tests that there are no exceptions thrown. The assert is bogus - it tests that there was a single transaction in between which is a wrong test in the first place - number of transactions isn't a functionality. The test doesn't verify whether the role was actually created and whether it was correctly dropped. And it is similar for other tests as well.

      Attachments

        1. SENTRY-1502.001.patch
          12 kB
          Ruiming Zhou

        Issue Links

          Activity

            People

              skyapus@yahoo.com Ruiming Zhou
              akolb Alex Kolbasov
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated: