| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is in preparation of moving functional tests currently in
tempest in-tree.
No surprises in this change:
* move files
* update the local imports
Same number of tests run, all still pass.
Change-Id: Ibfeac44421c5f36740b1377868f5ec469b2893f5
|
| |
|
|
|
|
|
|
|
|
| |
Sample API has been implemented in Ceilometer for a long time, but
CLI is lack of such support, this patch implements Sample CLI.
Implements blueprint cli-samples-api
Change-Id: I67152c636526dad3ec27e06058ff73ad969ae2b9
DocImpact
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
A dict embedded in a list is the expected input. In
47934c777c50897b649793e0960eebdaad322c45 the list was lost, this
puts it back.
Note that the _exact_ date of this failure was identified by
existing Rally jobs which started failing in early August. That made
searching the commit logs straightforward.
Change-Id: I37e794de7a23b8ce8e67a086732af5a19f182409
Closes-Bug: #1367867
|
| |
|
|
|
|
|
|
|
| |
assertTrue(*) means to check whether a boolean value/expression
is true or not. For checking an object is not None, we should use
assertIsNotNone(*), which gives more explicit expression.
Change-Id: Ia4d0dcec81e97fe4774bff4e41a017f00b899ef3
Closes-Bug: #1297156
|
| |
|
|
|
|
|
|
|
| |
In the process of unification of the clients code we should
reuse common functionality from Oslo.
bp common-client-library-2
Change-Id: I0e027c33ee42b6de032d33269caeea33e7837f40
|
| |
|
|
|
|
|
|
|
|
|
|
| |
This patch adds support for the currently available
Event API, including events, event types, and traits.
Add an optional data type to the query, ex:
ceilometer list-events -q 'hostname=string::localhost"
bp extend-client-operations
Change-Id: Icea9bd67f8ee4ff2bf9da9ff6894218689580eb3
|
| |
|
|
|
| |
Change-Id: I338590fcd75f39c3419e7e138023f6918f206ae2
Fixes: bug #1244172
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In Python 3.3, hash randomization is enabled by default. It causes the
iteration order of dicts and sets to be unpredictable and differ
across Python runs.
In the test case, the fixed expecting string will not match the test
result, it is relying on the dict order.
This change transforms the input dict to a sequence of two-element list,
with fixed order, and update the related expecitng string / fixture
in test cases.
Partial Implement: blueprint py33-support
Change-Id: I6dccde9e584be8335a6375f5fbad5c5cbd7b9b6d
|
| |
|
|
|
| |
Change-Id: Ia007da282714d8ee7337fd3b51f6dcc3b64d7ec3
Fixes-Bug: #1214176
|
| |
|
|
| |
Change-Id: Ib33a5fd162d760efa23a2fc496c1d11d79484491
|
|
|
tests.* implies an incorrect global package name. Additionally,
consuming code can benefit from being able to choose to consume
test code and fixtures.
Change-Id: I7ba2b3ba1c2a99410b54fc40b48dfe2fc53eb79a
|