Edgewall Software

Changes between Version 4 and Version 10 of Ticket #11166


Ignore:
Timestamp:
Aug 23, 2013, 9:49:54 AM (11 years ago)
Author:
Ryan J Ollos
Comment:

Thanks for the feedback. Suggestions incorporated and forbidden report links handled in rjollos.git:t11166.3. To be consistent, we'd want to utilize the forbidden class for other TracLinks, and add title attributes for missing and forbidden reports.

It would be nice to be able to do permissions-based testing in the wiki syntax tests (wikisyntax.py). For the report TracLinks, we'd even like the test to be more complex than just granting / revoking REPORT_VIEW, because that wouldn't reveal if for example the permissions check has been implemented as 'REPORT_VIEW' in formatter.req.perm rather than 'REPORT_VIEW' in formatter.req.perm('report', id).

For functional tests I've used FunctionalTestEnvironment.enable_authz_permpolicy, however I think for the wiki syntax tests it would be nice to avoid having a dependency on tracopt.perm.authz_policy and ConfigObj. I'm not entirely sure yet, but maybe the key is to extend MockPerm to allow some specific policies to be specified, such as {'report:3': '!REPORT_VIEW'}.

Any ideas or suggestions on this "Mock permission" issue?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11166

    • Property Status newassigned
    • Property Owner set to Ryan J Ollos
    • Property Milestone1.0.2
  • Ticket #11166 – Release Notes

    v4 v10  
     1TracLinks to missing reports are rendered as non-followable with the `missing` class, and TracLinks that the user doesn't have permission to view are rendered as non-followable with the `forbidden` class.