Expand my Community achievements bar.

SOLVED

wcm.io mockPageManager, unable to test PageManager "copy".

Avatar

Level 2

Hello Guys, 

I am trying to test the PageManager.copy() with wcm.io, but am unable to do so. This is because the mockPageManager.copy() is not implemented. What are some other ways for me to test the PageManager.copy() command?

io.atlassian.net/browse/WTES-17?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel

 

java.lang.UnsupportedOperationException
at org.apache.sling.testing.mock.jcr.MockSession.move(MockSession.java:424)

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
2 Replies

Avatar

Correct answer by
Community Advisor

Avatar

Level 2

Yeah, we can see that the MockPageManager.copy is not implemented.

@Override
294   public Page copy(final Page page, final String destination, final String beforeName, final boolean shallow,
295       final boolean resolveConflict) {
296     throw new UnsupportedOperationException();
297   }

https://wcm.io/testing/aem-mock//xref/io/wcm/testing/mock/aem/MockPageManager.html

What is another way to test this?