Hello,
I am trying to add a donut graph of our Automated Test Suite to a confluence page via the "Test Execution Progress" Macro. However, when I add this in, the macro only displays
"No data found !"
There is another macro called "Test execution" that is a bar graph and it displays the information correctly.
These are both connected to Zephyr test cycle executions, and both of these macros work in our JIRA instance. But when I add the Macro to confluence, i just get the error mentioned above.
Is this a known issue or is there a fix? Anyone else see this? Thanks!
Here's a screenshot of the Macro after saving the changes on the confluence page:
They told me it's an error with Confluence and i should contact Atlassian instead. Or I could buy the Zephyr Blueprints...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I wonder if anyone can confirm it's this issue that has been present since 2016(!)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
no. doesnt seem to be the same. This is related to zephyr tests. in jira dashboard, the same macro chart builder works. but fails when added in confluence. Mine seems to be an issue when theres multiple folders added.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
The issue still persisting as of today. Anyone got any pointer/workaround/resolution on this please?
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
In the Confluence page source the "Test Execution Progress" Macro will be added as something like below.
<p>
<ac:structured-macro ac:macro-id=macro_id ac:name="gadget" ac:schema-version="1">
<ac:parameter ac:name="preferences">folders=null&cycles=1234&cycleExecutionStatusName=Test%20Execution%20Progress&projectId=5678&version=000&chartType=pie&showProjectName=true&showVersionName=true&isConfigured=true&refresh=false</ac:parameter>
<ac:parameter ac:name="url">jira_url</ac:parameter>
</ac:structured-macro>
</p>
The issue is basically because Folder value is given as empty and it coming as null in macro folders=null. So as a workaround, removing this worked for me. Like below
<p>
<ac:structured-macro ac:macro-id=macro_id ac:name="gadget" ac:schema-version="1">
<ac:parameter ac:name="preferences">cycles=1234&cycleExecutionStatusName=Test%20Execution%20Progress&projectId=5678&version=000&chartType=pie&showProjectName=true&showVersionName=true&isConfigured=true&refresh=false</ac:parameter>
<ac:parameter ac:name="url">jira_url</ac:parameter>
</ac:structured-macro>
</p>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.