Project

General

Profile

Bug #6620

Allow plugins to include test setup code in the test_helper

Added by Eric Helms over 8 years ago. Updated over 4 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Tests
Target version:
Difficulty:
Triaged:
Bugzilla link:
Fixed in Releases:
Found in Releases:
Red Hat JIRA:

Associated revisions

Revision 80a2f885 (diff)
Added by Eric Helms over 8 years ago

Fixes #6620: Allow plugins to define a file to be included in test_helper.

For some plugins additions to the test_helper are needed to allow
the test suite to pass. This checks if a file test/support/foreman_support
exists and requires it after all the Foreman test setup is done.

History

#1 Updated by The Foreman Bot over 8 years ago

  • Status changed from New to Ready For Testing
  • Target version set to 1.8.0
  • Pull request https://github.com/theforeman/foreman/pull/1587 added
  • Pull request deleted ()

#2 Updated by Anonymous over 8 years ago

  • Target version changed from 1.8.0 to 1.7.5

#3 Updated by Eric Helms over 8 years ago

In some cases, a plugin may modifies or changes core Foreman behaviors such that for the Foreman tests to run in the context of the plugin some setup code may need to be run before the test suites. In Katello currently, if the Foreman unit tests are run there are a number of errors thrown about "running a dynflow action in a transaction" which can be squelched by including the following in the test helper via this functionality:

Organization.class_eval do
def ensure_not_in_transaction!
end

def execute_planned_action
end
end

User.class_eval do
def ensure_not_in_transaction!
end

def execute_planned_action
end
end

#4 Updated by Dominic Cleal over 8 years ago

  • Legacy Backlogs Release (now unused) set to 10

#5 Updated by Eric Helms over 8 years ago

  • Status changed from Ready For Testing to Closed
  • % Done changed from 0 to 100

Also available in: Atom PDF