1. 16 Aug, 2021 1 commit
  2. 09 Mar, 2021 3 commits
    • Thomas Goirand's avatar
      Fixed (build-)depends for this release. · b5c18fd0
      Thomas Goirand authored
      b5c18fd0
    • Thomas Goirand's avatar
      Now packaging 1.4.0 · 66886377
      Thomas Goirand authored
      66886377
    • Thomas Goirand's avatar
      Merge tag '1.4.0' into debian/wallaby · f5f62993
      Thomas Goirand authored
      cinder-tempest-plugin 1.4.0 release
      
      meta:version: 1.4.0
      meta:diff-start: -
      meta:series: wallaby
      meta:release-type: release
      meta:pypi: no
      meta:first: no
      meta:release:Author: Luigi Toscano <ltoscano@redhat.com>
      meta:release:Commit: Luigi Toscano <ltoscano@redhat.com>
      meta:release:Change-Id: Ib6efac12278c12aa1f320c12a86cbcd164faed90
      meta:release:Code-Review+1: Brian Rosmaita <rosmaita.fossdev@gmail.com>
      meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech>
      meta:release:Code-Review+2: Hervé Beraud <herveberaud.pro@gmail.com>
      meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org>
      meta:release:Workflow+1: Thierry Carrez <thierry@openstack.org>
      f5f62993
  3. 03 Mar, 2021 1 commit
  4. 01 Mar, 2021 1 commit
  5. 27 Feb, 2021 2 commits
  6. 25 Feb, 2021 1 commit
    • Luigi Toscano's avatar
      Fix cinder-backup/swift: readd member to tempest roles · 5d7847cc
      Luigi Toscano authored
      Change I0b6ab9fb943c7b0925a0a0d2490a8bcdfa76cedc removed the 'member'
      user from the default roles assigned to dynamic tempest users.
      This broke cinder-backup with the default swift backend.
      
      Set the full list of roles, including 'creator' which should be
      added by the barbican devstack plugin. Unfortunately the values
      here overrides any other setting.
      
      Change-Id: Id6dc96915f5b15827e6e8f58cc8195a0f76e9686
      5d7847cc
  7. 23 Feb, 2021 1 commit
    • Luigi Toscano's avatar
      Use the embedded scenario manager instead of tempest one · 3c5c8a23
      Luigi Toscano authored
      While waiting for tempest scenario manager to stabilize its API,
      a copy of it has been imported, so make sure to use it and to not
      rely on tempest's one (whose API is changing during the stabilization
      process, so it may break anytime).
      
      Just one file needs to change its imports.
      At the same time, fix the import order for another file.
      
      Change-Id: I29c4784d59151948778cad57b7db56a368ed821d
      3c5c8a23
  8. 19 Feb, 2021 3 commits
  9. 09 Feb, 2021 1 commit
    • Luigi Toscano's avatar
      Switch to stestr · 7c47222c
      Luigi Toscano authored
      We don't really have unit tests in the repository and any py3x venv
      would not really be useful (the tests are executed through tempest),
      but let's remove the old dependency anyway and depend on stestr
      like all the other OpenStack projects.
      
      Change-Id: I52d06f1c1e141cb455fb7a823a27be532afb4c16
      7c47222c
  10. 31 Jan, 2021 1 commit
  11. 30 Jan, 2021 1 commit
  12. 29 Jan, 2021 2 commits
    • Rajat Dhasmana's avatar
      Add Snapshot data integrity test · 21d63a3a
      Rajat Dhasmana authored
      This patch adds data integrity tests for snapshot with the following
      procedure :
      
      1) create a volume from image
      2) Boot an instance from the volume
      3) create file on vm and write data into it
      4) create first snapshot
      5) repeat 3
      5) create second snapshot
      6) repeat 3
      7) create third snapshot
      
      Now restore the snapshots one by one into volume, create instances
      from it and check the number of files and file content at each
      point snapshot was created.
      
      We are also temporarily making a copy of tempest scenario manager until
      the actual manager is available for import in tempest plugins.
      
      Change-Id: I5c5ff6f996dd39b52fada82f3938b628e58b0a2c
      21d63a3a
    • Rajat Dhasmana's avatar
      Ignore H101 rule · df4f9471
      Rajat Dhasmana authored
      It doesn't seem to provide any benefit and is also removed from cinder
      project.
      For detailed reason, please look into the commit message of the cinder
      patch[1].
      
      [1] https://opendev.org/openstack/cinder/commit/b0a56ddd252670dadb2c5e3eb0b03bfc7f93623d
      
      Change-Id: I9a7749288706c8b326c1acd0cef6edd5ea91503e
      df4f9471
  13. 21 Jan, 2021 1 commit
    • Lee Yarwood's avatar
      test_volume_encrypted: Stop creating an image for each instance · 3c96bfb4
      Lee Yarwood authored
      An independent image isn't required for these tests and additionally
      isn't required when calling create_server as the lack of an image
      results in CONF.compute.image_ref being used by
      tempest.common.compute.create_test_server [1].
      
      The creation of this image resulted in the nova-ceph-multistore job
      breaking as documented in bug #1912607. This broke as we use the job to
      provide both our core ceph coverage and slightly more edgey topologies
      using Glance multistore and the [workarounds]/ workaround option. This
      option blocking the download of rbd images via g-api when n-cpu can't
      clone the rbd volumes directly, as caused by the image creation in
      test_volume_encrypted.
      
      Iaf6f6e0dbcb25561bf00e969e1964cd30e974e64 is currently skipping any
      encryption test in the nova-ceph-multistore job to workaround bug
       #1912607 for the time being but we would obviously like to revert that
      if possible and expand our coverage.
      
      A follow up change will also propose adding nova-ceph-multistore to the
      gate of this plugin to avoid future breakage.
      
      Related-Bug: #1912607
      
      [1] https://opendev.org/openstack/tempest/src/branch/master/tempest/common/compute.py#L108-L109
      
      Change-Id: I50d3b874b7e0676436c434be6c059f221041560f
      3c96bfb4
  14. 20 Jan, 2021 1 commit
  15. 18 Jan, 2021 1 commit
    • Sofia Enriquez's avatar
      Encryption Test Scenario for clone volume · 5ab3fef7
      Sofia Enriquez authored
      Due to an error in the _setup_encryption_keys volume rekey code, a
      cloned encrypted volume that has been rekeyed will specify an
      encryption key different from the key used to format the volume,
      so it cannot be attached.
      
      This test scenario will cover this feature and also the case of
      source-vol feature.
      
      Related-Bug: #1904440
      Depends-on: https://review.opendev.org/#/c/762884/
      Change-Id: I846b96ef925c34162cf462da91d854ceacabe022
      5ab3fef7
  16. 05 Jan, 2021 2 commits
  17. 18 Nov, 2020 1 commit
  18. 18 Oct, 2020 3 commits
  19. 09 Oct, 2020 1 commit
  20. 06 Oct, 2020 1 commit
  21. 02 Oct, 2020 2 commits
    • Thomas Goirand's avatar
      Now packaging 1.2.0 · 1c0ee695
      Thomas Goirand authored
      1c0ee695
    • Thomas Goirand's avatar
      Merge tag '1.2.0' into debian/victoria · e040c4e3
      Thomas Goirand authored
      cinder-tempest-plugin 1.2.0 release
      
      meta:version: 1.2.0
      meta:diff-start: -
      meta:series: victoria
      meta:release-type: release
      meta:pypi: no
      meta:first: no
      meta:release:Author: Sean McGinnis <sean.mcginnis@gmail.com>
      meta:release:Commit: Sean McGinnis <sean.mcginnis@gmail.com>
      meta:release:Change-Id: I886b9ea80b6e042947caf1d4f9765201bcbe4643
      meta:release:Code-Review+2: Hervé Beraud <hberaud@redhat.com>
      meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com>
      meta:release:Workflow+1: Sean McGinnis <sean.mcginnis@gmail.com>
      e040c4e3
  22. 24 Sep, 2020 1 commit
  23. 22 Sep, 2020 1 commit
  24. 13 Sep, 2020 2 commits
    • Thomas Goirand's avatar
      Now packaging 1.1.0 · d76d9204
      Thomas Goirand authored
      d76d9204
    • Thomas Goirand's avatar
      Merge tag '1.1.0' into debian/victoria · b544436b
      Thomas Goirand authored
      cinder-tempest-plugin 1.1.0 release
      
      meta:version: 1.1.0
      meta:diff-start: -
      meta:series: victoria
      meta:release-type: release
      meta:pypi: no
      meta:first: yes
      meta:release:Author: Brian Rosmaita <rosmaita.fossdev@gmail.com>
      meta:release:Commit: Brian Rosmaita <rosmaita.fossdev@gmail.com>
      meta:release:Change-Id: If7aa154745235ab13a55585a096f29a62ca5c35c
      meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com>
      meta:release:Code-Review+2: Hervé Beraud <hberaud@redhat.com>
      meta:release:Workflow+1: Hervé Beraud <hberaud@redhat.com>
      b544436b
  25. 30 Jul, 2020 1 commit
    • Luigi Toscano's avatar
      Consistency groups: fix the exceptions handling · f1432e10
      Luigi Toscano authored
      = Fix the imports of shared exceptions =
      
      Shared tempest exceptions (like TimeoutException) are defined
      in and exported by tempest.lib, so use them correctly.
      
      = Directly define the exceptions used by this tempest plugin =
      
      While those exceptions have been defined in tempest.lib through
      I62e0ba556b884c94f6e8796a2e6f6d8083277fa4,
      they really belongs to this plugin only, so define them here.
      Other tempest plugins followed the same pattern.
      Moreover, the current import would need to be fixed anyway,
      because it should import the exceptions from tempest.lib.exceptions
      instead of tempest.exceptions.
      
      Closes-Bug: #1858417
      Closes-Bug: #1889537
      Change-Id: Ie54c2a1dc25b647a0f0d10bcad6ba62023986741
      f1432e10
  26. 28 Jul, 2020 1 commit
    • Brian Rosmaita's avatar
      Add test for cinder_img_volume_type image metadata · a75d5e5e
      Brian Rosmaita authored
      When a volume is created from an image with a cinder_img_volume_type
      image property, and a volume_type is not specified in the volume-
      create call, the resulting volume should be the specified volume_type,
      not the default type.
      
      Change-Id: If8edd24ba5183522ebe8202bbf6b62b41b3febe9
      a75d5e5e
  27. 27 Jul, 2020 1 commit
  28. 16 Jul, 2020 2 commits