1. 15 11月, 2018 1 次提交
  2. 14 11月, 2018 1 次提交
  3. 05 11月, 2018 1 次提交
  4. 31 10月, 2018 2 次提交
  5. 25 10月, 2018 1 次提交
  6. 09 10月, 2018 1 次提交
  7. 08 10月, 2018 2 次提交
  8. 06 10月, 2018 1 次提交
  9. 05 10月, 2018 4 次提交
  10. 04 10月, 2018 1 次提交
    • C
      Adds OpenSUSE vmimage provider · 37e7a3ea
      Caio Carrara 提交于
      This change adds a functional version of OpenSUSE vmimage provider.
      Because of some specific aspects of OpenSUSE versioning this provider
      version works properly with most recent known versions (42.3, 42.2. 42.1
      and 15.0) and should work properly with future versions as well (15+).
      
      This provider version also don't work with Tumbleweed (rolling release)
      versions, only with Leap versions. Because for tests it's better to
      change one thing at time, the rolling release is not a version supported
      right now.
      
      Reference: https://trello.com/c/i2TSbT3MSigned-off-by: NCaio Carrara <ccarrara@redhat.com>
      37e7a3ea
  11. 03 10月, 2018 1 次提交
  12. 02 10月, 2018 10 次提交
  13. 01 10月, 2018 3 次提交
  14. 30 9月, 2018 4 次提交
  15. 29 9月, 2018 4 次提交
  16. 28 9月, 2018 3 次提交
    • C
      avocado.utils.ssh: introduce SSH utility library · 7475725e
      Cleber Rosa 提交于
      This implements a connection wrapper around SSH, and requires the
      OpenSSH client tools installed.
      
      It uses a master connection for a number of reasons, including but not
      limited to being able to distinguish between connection failures and
      command execution failures.
      
      Most of the command execution results are accurate and similar to
      users of `avocado.utils.process.run()`: the exit status is preserved
      for the local user inspection.  The stdout and stderr, time taken to
      execute the command (including the remote part) is also available.
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      7475725e
    • C
      vmimage: more tests for parser and base and minor improvements · 7f911a33
      Caio Carrara 提交于
      This change focus mostly on increasing tests for VmImageHtmlParser and
      ImageProviderBase. During the tests implementation some improvements
      were detected: the process of feed a html parser run both for get an
      image version and image url was duplicated so it was unified in a single
      method.
      
      Besides that the process of get a best version for an image was put on a
      specific method so each provider can override it if required. Today the
      default rule for a best version is based on calling max() function on
      found versions. However we can't assume it's the default for every
      provider. As far as we know, for a possible OpenSuse provider in future
      this rule will not be valid.
      
      Reference: https://trello.com/c/vtM1SPpJSigned-off-by: NCaio Carrara <ccarrara@redhat.com>
      7f911a33
    • C