Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix certificateMappingList returning valid CertificateMappings when iterated #706

Conversation

Darunada
Copy link
Contributor

The following code was returning empty CertificateMapping objects when iterated.

// snippet roughly from the documentation...
$mappingsIterator = $loadBalancer->certificateMappingList();
while ($mappingsIterator->valid()) {
    $mapping = $mappingsIterator->current();
    echo $mapping->id; // EMPTY ID
    $mappingsIterator->next();
}

// the foreach syntax has the same problem...

Inspecting the $elements property on $mappingsIterator was showing the elements in the following structure with correct values:

$elements = [
    0=>{
        certificateMapping => {
            id: 1234
            hostName: whatever.com
        }
    },
    1=>{...}
    2=>{...}
]

However, looping the iterator was returning CertificateMapping objects without the id and hostName properties set. This was caused because of the second level in the $elements array being passed into populate, recognizing that there is no property called "certificateMapping" and issuing a warning "Attempted to set certificateMapping with value {id...hostname...}, but the property has not been defined. Please define first."

Adding this method allows populate to recognize that certificateMapping structure and repopulate with the actual values.

It now returns valid CertificateMapping objects with the id and hostname set, making it actually useful.

There were no tests to this portion of the platform so I did not add any to check this behavior.

@coveralls
Copy link

coveralls commented Apr 18, 2017

Coverage Status

Coverage decreased (-0.05%) to 88.771% when pulling 3bf08b2 on Darunada:fix-load-balancer-certificateMappingList into cce4c2c on rackspace:working.

@jamiehannaford jamiehannaford merged commit 8c5cb50 into rackspace:working May 14, 2017
@Mortalife
Copy link

I just pushed a change for this not realising it was on working branch - any idea when the current working branch will be available from composer?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants