Note that you need the newly pushed (to fedora 16) version of deltacloud client to see this error. This patch should not cause 0.4 to fail for those still on that older version (you need to upgrade soon, btw). As Fedora 15 is closing in on EOL, you can always gem install this, or grab the rpm from koji for version 0.5[1]. The exact test to run is in the RM issue, but for your convenience in testing, it is: cucumber features/provider_account.feature:17
[1] http://koji.fedoraproject.org/koji/packageinfo?packageID=11102
-j
https://www.aeolusproject.org/redmine/issues/3209
Simple fix, there will be another feature/task to add support for verifying the provider (rather than just the deltacloud core instance), is valid, which is now supported by the client. In the meantime, this removes one more case where we were hitting core directly, which we try not to do in the tests. --- src/features/support/custom.rb | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/features/support/custom.rb b/src/features/support/custom.rb index ce6e872..a02427c 100644 --- a/src/features/support/custom.rb +++ b/src/features/support/custom.rb @@ -22,6 +22,10 @@ Provider.class_eval do def valid_framework? true end + + def populate_realms + true + end end
ProviderAccount.class_eval do
On 04/27/2012 12:37 PM, Jason Guiditta wrote:
https://www.aeolusproject.org/redmine/issues/3209
Simple fix, there will be another feature/task to add support for verifying the provider (rather than just the deltacloud core instance), is valid, which is now supported by the client. In the meantime, this removes one more case where we were hitting core directly, which we try not to do in the tests.
src/features/support/custom.rb | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/features/support/custom.rb b/src/features/support/custom.rb index ce6e872..a02427c 100644 --- a/src/features/support/custom.rb +++ b/src/features/support/custom.rb @@ -22,6 +22,10 @@ Provider.class_eval do def valid_framework? true end
def populate_realms
true
end end
ProviderAccount.class_eval do
Ack. Fixes the test.
aeolus-devel@lists.fedorahosted.org