Skip to content
Snippets Groups Projects
  1. Jan 19, 2012
  2. Jan 18, 2012
  3. Jan 17, 2012
  4. Jan 16, 2012
  5. Jan 13, 2012
    • Iustin Pop's avatar
      Fix very slow unit-test data generation in some cases · 7806125e
      Iustin Pop authored
      
      Learning, learning. It turns out that for objects with even just five
      fields, generating them and filtering can be costly, especially when
      the filtering is nested (as it was in this case, arbitrary1 →
      arbitrary2 + filter on arbitrary1 → arbitrary plus filter on
      aribitrary2).
      
      Changing the code to generate directly the good values speeds things
      up significantly. Additionally, we also generate correctly unique
      lists of disk templates (again, this should be a set, not a list,
      but…).
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
      7806125e
    • Iustin Pop's avatar
      Fix one bad unit-test data generation case · 746b7aa6
      Iustin Pop authored
      
      It could happen that the node is generated with 0 disk available, in
      which case the operation will fail due to disk issues, not CPU. Fix
      this by using the recently-introduced genOnlineNode helper.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
      746b7aa6
    • Iustin Pop's avatar
      Further fixes to instance policy validation · 57dc299a
      Iustin Pop authored
      
      As a followup from "Remove extraneous check in policy creation", there
      are more places where we build an ipolicy, and then manually check for
      its validity. This is very bad style, as it duplicates the
      verification code across many places.
      
      This patch removes all such explicit checks (except for one in
      cmdlib.py which is correct), and instead does a bit more validation in
      the builder functions or in the actual dedicated verification
      functions. It also fixes cluster init which used the wrong,
      non-completed ipolicy (this was not detected before as we did call
      check on it, but otherwise we ignored it), and fixes a too-strong
      assert (due to the call chain, we first create the ipolicy from
      cmdline params, and only then we fill it).
      
      Finally, it removes an extraneous logging.info which I forgot from
      debugging.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
      57dc299a
    • Iustin Pop's avatar
      Fix another data generation issue in tests · 3074ccaf
      Iustin Pop authored
      
      Another "good" seed value manages to generate nodes with identical
      names, which of course makes the sets be of smaller value than the
      lists. Avoid this issue by generating unique node names.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
      3074ccaf
    • Iustin Pop's avatar
      Remove some dead code · 16670b57
      Iustin Pop authored
      
      While wondering why Cluster.tryReloc is not unit-tested, I realised
      that this is no longer uses. Apparently, last summer's new IAllocator
      modes and related changes have silently deprecated this function.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
      16670b57
    • Iustin Pop's avatar
      Fix a few issues in unittest data generation · a2a0bcd8
      Iustin Pop authored
      
      This patch fixes two ugly but non-critical issues:
      
      - the getFQDN wrongly generated only the first component as
        limited-length name, the rest could be any length, and that makes
        the generated name bad for display purposes
      - the random generator had real issues in finding an offline instance
        with the right properties when starting from certain seeds (found
        accidentally); this meant the test took 1 minute, instead of ~300ms,
        for the node_addSecOffline
      
      Furthermore, for the same evil seed, the Container_findByName test
      wasn't able to generate enough good data, so we change its
      implementation to directly generate an uniques list, instead of
      generating random lists and filtering the unique ones.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
      a2a0bcd8
Loading