File tree Expand file tree Collapse file tree
src/org/labkey/test/tests/core/security Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,20 +101,19 @@ public void testAdminConsoleVisibility()
101101 verifySitePermissionSetting (true );
102102 }
103103
104- /**
105- * Issue 47508: auditLog table visibility is inconsistent
106- * Assert broken behavior to prompt a test update once issue is fixed.
107- */
104+ // Verify fix for Issue 47508 / GitHub Issue #26: auditLog table visibility is inconsistent
108105 @ Test
109106 public void testAllAuditTableVisibility ()
110107 {
111108 impersonate (TROUBLESHOOTER_USER );
112109 ShowAdminPage showAdminPage = goToAdminConsole ().goToSettingsSection ();
113110
114- log ("Verify the export file is non empty " );
111+ log ("Verify \" Group and role \" audit event table is viewable " );
115112 ShowAuditLogPage auditLogPage = showAdminPage .clickAuditLog ();
116113 auditLogPage .selectView ("Group and role events" );
117- assertTextPresent ("You do not have permission to see this data." );
114+ assertTextNotPresent ("You do not have permission to see this data." );
115+ DataRegionTable logTable = auditLogPage .getLogTable ();
116+ assertTrue (logTable .getDataRowCount () > 0 );
118117 }
119118
120119 protected void verifySitePermissionSetting (boolean canSave )
You can’t perform that action at this time.
0 commit comments