Skip to content
Snippets Groups Projects
  1. Aug 10, 2019
  2. Aug 04, 2019
  3. Aug 02, 2019
  4. Aug 01, 2019
  5. Jul 30, 2019
  6. Jul 26, 2019
  7. Jul 23, 2019
  8. Jul 02, 2019
  9. Jul 01, 2019
    • Daniel Gerhardt's avatar
      a06f3c0a
    • Daniel Gerhardt's avatar
      Fix code style violations regarding comments · f8bafdff
      Daniel Gerhardt authored
      * Removed obsolete commented-out code.
      * Fixed indentation of commented out code.
      * Added FIXME comments where old code still has to be migrated.
      f8bafdff
    • Daniel Gerhardt's avatar
      Fix multiple code style violations · 387c6347
      Daniel Gerhardt authored
      Rules:
      * (naming) ParameterName
      * (naming) LocalVariableName
      * (naming) MemberName
      * (naming) InterfaceTypeParameterName
      * (naming) AbbreviationAsWordInName
      * (modifier) ModifierOrder
      * (blocks) NeedBraces
      * (coding) OneStatementPerLine
      * (coding) MultipleVariableDeclarations
      * (coding) VariableDeclarationUsageDistance
      * (coding) MissingSwitchDefault
      * (coding) OverloadMethodsDeclarationOrder
      * (extension) RightCurlySame
      * (misc) ArrayTypeStyle
      387c6347
    • Daniel Gerhardt's avatar
      Break long lines to conform with style conventions · 10bb84c2
      Daniel Gerhardt authored
      The following conventions have been applied:
      * Rule: (sizes) LineLength
      10bb84c2
    • Daniel Gerhardt's avatar
      Adjust whitespace to conform with style conventions · 775382d1
      Daniel Gerhardt authored
      The following conventions have been applied:
      * Fix indentation levels
        Rules: (indentation) Indentation, (regexp) RegexpSinglelineJava
      * Always use operators at the beginning of a new line if there is a line
        break.
        Rule: (whitespace) OperatorWrap
      * Always use empty lines between method declarations.
        Rule: (whitespace) EmptyLineSeparator
      * Always use new line between annotation and field/method declaration.
        Rule: (extension) AnnotationLocationMostCases
      * Additional rules:
          * (whitespace) ParenPad
          * (whitespace) GenericWhitespace
          * (blocks) LeftCurly
          * (extension) RightCurlyAlone
      775382d1
    • Daniel Gerhardt's avatar
      Adjust imports to conform with style conventions · a67dc377
      Daniel Gerhardt authored
      The following conventions have been applied:
      * Import order: static packages -> other packages -> ARSnova packages
        Rule: (imports) CustomImportOrder
      * New line between import package groups
        Rule: (imports) CustomImportOrder
      * All packages are imported explicitly (no wildcard imports)
        Rule: (imports) AvoidStarImport
      * New line between license comment and package line
        Rule: (whitespace) EmptyLineSeparator
      a67dc377
  10. Jun 19, 2019
  11. Jun 06, 2019
  12. Jun 05, 2019
    • Daniel Gerhardt's avatar
      Remove confusing log message · be2f311f
      Daniel Gerhardt authored
      An error was logged before destroying UserServiceImpl class without any
      reason.
      be2f311f
    • Daniel Gerhardt's avatar
      Remove confusing log message · 3d388560
      Daniel Gerhardt authored
      An error was logged before destroying UserService class without any
      reason.
      3d388560
    • Daniel Gerhardt's avatar
      Allow limited access to UserProfiles for authenticated users · 8024c57f
      Daniel Gerhardt authored and Daniel Gerhardt's avatar Daniel Gerhardt committed
      Authenticated users can read `loginId` and `authProvider` properties.
      A FindQueryService has been added to lookup UserProfiles by `loginId`.
      8024c57f
    • Christoph Thelen's avatar
      745646fc
    • Christoph Thelen's avatar
      Revert additional profile, add global Mock for EntityService<DummyEntity> · 2aaa1567
      Christoph Thelen authored and Daniel Gerhardt's avatar Daniel Gerhardt committed
      Two key changes:
      
        1. Add a factory method to create the EntityService with the
           DummyEntity, so that all other test cases can initialize
           this Bean.  This solves the IllegalStateException reported
           in this ticket.
        2. Use @Autowire instead of @MockBean to use the new factory
           method.  That resolves the known issue that the caching test
           case does not work because of different RoomRepositories being
           created for the PermissionEvaluatorAdvice and the EntityService.
      
      This makes all tests runnable again.  My current theory is that due to
      the fact that we have at least two EntityServices (one created by
      the DefaultEntityServiceImplTest, and now one by this test).  The
      @MockBean annotation could be throwing out the previous EntityService,
      since according to documentation, it replaces existing Beans with the
      same type.  This could lead to a situation where, initially, the
      PermissionEvaluatorAdvice and the DefaultEntityService share the same
      RoomRepository.  But after the @MockBean replacement occurs, the
      EntityService is recreated with a different RoomRepository, while the
      Advice keeps its initial RoomRepository, leading to testing failures
      in the testCaching test case.
      2aaa1567
    • Christoph Thelen's avatar
      Add additional profile to exclude Controller from other tests · 66cc0201
      Christoph Thelen authored and Daniel Gerhardt's avatar Daniel Gerhardt committed
      This solves the IllegalStateExceptions occurring for most of the other
      test cases.
      
      However, we now have the old problem that different Repositories are
      injected into objects. In my case, the testCaching case of the
      DefaultEntityServiceImplTest stops working, because it gets a different
      RoomRepository than the ApplicationPermissionEvaluator.
      
      This behavior is caused by the introduction of the additional profile.
      66cc0201
    • Daniel Gerhardt's avatar
      Temporarily add test logging for debugging · 0553902b
      Daniel Gerhardt authored and Daniel Gerhardt's avatar Daniel Gerhardt committed
      0553902b
    • Daniel Gerhardt's avatar
      WIP: Add tests for JsonViewControllerAdvice · 0e8cbd17
      Daniel Gerhardt authored and Daniel Gerhardt's avatar Daniel Gerhardt committed
      See commit f620b9e7.
      0e8cbd17
  13. May 31, 2019
  14. May 28, 2019