Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CiviCRM Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
CiviCRM Core
Commits
84943d35
Commit
84943d35
authored
3 years ago
by
Eileen McNaughton
Browse files
Options
Downloads
Patches
Plain Diff
#2757
test to demonstrate contact delete actions not called for v4 api
parent
b878c8a8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/phpunit/api/v3/RelationshipTest.php
+1
-6
1 addition, 6 deletions
tests/phpunit/api/v3/RelationshipTest.php
with
1 addition
and
6 deletions
tests/phpunit/api/v3/RelationshipTest.php
+
1
−
6
View file @
84943d35
...
...
@@ -1335,11 +1335,6 @@ class api_v3_RelationshipTest extends CiviUnitTestCase {
]);
$this
->
callAPISuccessGetCount
(
'membership'
,
[
'contact_id'
=>
$this
->
_cId_a_2
],
0
);
// @todo - this is actually mimicing an accidental test set up from earlier.
// there is a legit bug whereby apiv4 contact.delete is
// somehow bypassing Membership cleanup.
// https://lab.civicrm.org/dev/core/-/issues/2757
$this
->
_apiversion
=
3
;
// Deleting the organization should cause the related membership to be deleted.
$this
->
callAPISuccess
(
'Contact'
,
'delete'
,
[
'id'
=>
$mainContactID
]);
$this
->
callAPISuccessGetCount
(
'Membership'
,
[
'contact_id'
=>
$this
->
_cId_a
],
0
);
...
...
@@ -1350,7 +1345,7 @@ class api_v3_RelationshipTest extends CiviUnitTestCase {
*
* @throws \CRM_Core_Exception
*/
public
function
testRelationshipCreateWithEmployerData
()
{
public
function
testRelationshipCreateWithEmployerData
()
:
void
{
// CASE A: Create a current employee relationship without setting end date, ensure that employer field is set
$params
=
[
'relationship_type_id'
=>
'5_a_b'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment