1. 22 Mar, 2022 2 commits
  2. 17 Mar, 2022 5 commits
  3. 09 Mar, 2022 1 commit
  4. 08 Mar, 2022 4 commits
  5. 16 Feb, 2022 1 commit
  6. 14 Dec, 2021 1 commit
  7. 06 Dec, 2021 1 commit
  8. 25 Nov, 2021 2 commits
  9. 24 Nov, 2021 1 commit
    • Julia Kreger's avatar
      Move API base out of admin test location · 8f9ea621
      Julia Kreger authored
      Originally ironic was entirely pruely just an admin API,
      but this has changed, and we need to add additional non-admin
      tests, so it makes sense to re-use to the base and share it
      amongst the tests.
      
      Change-Id: I0fe3e326e4a25dc0928080fd1111ca4c46d8134a
      8f9ea621
  10. 08 Sep, 2021 1 commit
  11. 05 Aug, 2021 1 commit
  12. 13 Jul, 2021 1 commit
  13. 07 Jul, 2021 1 commit
  14. 06 Jul, 2021 1 commit
    • Julia Kreger's avatar
      Remove train testing from ironic-tempest-plugin · 8b9be89a
      Julia Kreger authored
      At this point, it is relatively safe to remove the
      train jobs for ironic-tempest-plugin. The branches
      are EOL, and we're unlikely to make any changes which
      testing against Train, that can't be identified or
      revealed in later community supported stable branches.
      
      Change-Id: I069a9ec15d94871c7b610e130b13e9403110f728
      8b9be89a
  15. 05 Jul, 2021 1 commit
  16. 25 Jun, 2021 2 commits
    • Julia Kreger's avatar
      Add Wallaby jobs · eaf7482e
      Julia Kreger authored
      Change-Id: Id0d91c09f3d9f6cb5207b02ec7ebf3d2075f366d
      eaf7482e
    • Julia Kreger's avatar
      Use get_service_clients framework with basic Secure RBAC · 3a07c4d5
      Julia Kreger authored
      The ironic tempest plugin was an early plugin and manually
      invoked override plugin clients and then attached them in
      the setup_clients method. However, the newer format is to
      use get_service_clients, which creates and attach client
      classes using the prepared credentials supplied by the
      credentials attribute on the test classes.
      
      In order to support even the most basic testing handling
      and testing of Scope Enforcement as part of Secure RBAC,
      then the we need to leverage the newer (last 3-4 years)
      model of instantiating and leveraging clients in tempest.
      This is because we need to be able to get a system scoped
      admin token to be able to test actions as a system scoped
      admin user. Not to be confused with "admin", which is
      project scoped.
      
      This newer style of client support does necessitate some
      legacy style or direct client invocations to be retooled
      so they do not attempt to directly invoke without the
      required context.
      
      Additionally, to support even the most basic handling of
      the Secure RBAC's effort, we need to be able to know
      when to leverage *and* then leverage that client.
      We do that through the enforce_scope parameter
      in upstream tempest.
      
      Depends-On: https://review.opendev.org/c/openstack/tempest/+/798130
      Change-Id: I5188fc756f1b524e9d1b32ef0474e29a9cf90b57
      3a07c4d5
  17. 04 May, 2021 1 commit
    • XinxinShen's avatar
      setup.cfg: Replace dashes with underscores · 12236ec3
      XinxinShen authored
      Setuptools v54.1.0 introduces a warning that the use of dash-separated
      options in 'setup.cfg' will not be supported in a future version [1].
      Get ahead of the issue by replacing the dashes with underscores. Without
      this, we see 'UserWarning' messages like the following on new enough
      versions of setuptools:
      
        UserWarning: Usage of dash-separated 'description-file' will not be
        supported in future versions. Please use the underscore name
        'description_file' instead
      
      [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb
      
      Change-Id: I651339c8103cb46f7d4eb0107bb300a6da29dbb1
      12236ec3
  18. 07 Apr, 2021 1 commit
  19. 20 Mar, 2021 1 commit
  20. 18 Feb, 2021 1 commit
    • Julia Kreger's avatar
      Remove /extra/vif_port_id usage · 957dc347
      Julia Kreger authored
      A long time ago, in a galaxy far far away, the use of
      /extra/vif_port_id was deprecated in favor of vif attachment and
      detachment. This change updates a test which was using the
      /extra/vif_port_id field value to bind a vif, and then list/detach
      it using the vif attach/detach/list API interfaces.
      
      Since the action is to add/list/detach, this seems appropriate and
      should be widely supported going back 4+ years.
      
      Change-Id: I0b0cd0aaf9a87803386e096ab768638476f9ca52
      957dc347
  21. 25 Jan, 2021 1 commit
  22. 19 Nov, 2020 1 commit
  23. 12 Nov, 2020 2 commits
    • Julia Kreger's avatar
      Fix byte check in tempest plugin · e056d5f4
      Julia Kreger authored
      Different implementations of ping behave slightly differently
      in order to ensure the packet payload is transmitted across
      the wire because some mediums have a minimum packet size.
      
      Typically this results in a frame size of 64 bytes, but
      the client may report 56 when the header is removed and only
      the packet payload is examined.
      
      But the point of the check is that we got something back.
      
      The below edited for example purposes:
      
      $ ping -c1 -w4 192.168.133.92
      PING 192.168.65.92 (192.168.133.92) 56(84) bytes of data.
      From 192.168.65.249 icmp_seq=1 Destination Host Unreachable
      
      --- 192.168.65.92 ping statistics ---
      1 packets transmitted, 0 received, 0 errors, 100% packet loss, time 3075ms
      $ ping -c1 -w4 192.168.65.1
      PING 192.168.65.1 (192.168.65.1) 56(84) bytes of data.
      64 bytes from 192.168.65.1: icmp_seq=1 ttl=64 time=12.4 ms
      
      And then in CI, we're able to see this be 56 bytes returned
      becasue the underlying medium may not have been ethernet or
      the client has stripped the header. Which, doesn't matter,
      we get A reply from the expected address and we can validate
      the test on that alone.
      
      Change-Id: If0d51b52e96f280336d0d92135681db75a6fbd65
      e056d5f4
    • Riccardo Pittau's avatar
      Run redfish victoria job on focal · 131ffef6
      Riccardo Pittau authored
      The ironic-standalone-redfish-victoria job is using latest tinyipa
      based on tinycore 11.x, but still running on bionic.
      That causes issues during the ipa-ramdisk build because of kernel
      too old in bionic, so setting nodeset to focal.
      
      Change-Id: Ia0fbc97184a4098635085edbdd6d7be5dfd2218c
      131ffef6
  24. 01 Nov, 2020 1 commit
  25. 27 Oct, 2020 1 commit
  26. 19 Oct, 2020 1 commit
    • Riccardo Pittau's avatar
      Set safe version of hacking · 912a0e55
      Riccardo Pittau authored
      Versions of hacking from 3.1.0 until 4.0.0 NOT included are supposed
      to require a safe version of flake8, so besides normale issues related
      to minor version upgrades, we can safely use those versions.
      Also forcing pycodestyle versions to be compatible with flake8 installed
      by hacking.
      
      Change-Id: Idb66f2ae0105308747cdf3046b09a22bdf691ea3
      912a0e55
  27. 13 Oct, 2020 1 commit
  28. 12 Oct, 2020 1 commit
  29. 01 Oct, 2020 1 commit