AzureDevOps 2019 - Linking Test Runs to User Stories - azure-devops

Is it possible to link the Azure Test Plans Test Runs results to a Test Case/User Story? I can link the Test Case to a User Story and get the report on that but I'm looking at getting the Test Run metrics etc. linked to a Test Case or a User Story so that that I can report on that?
Pleas advise
Thanks
Greg

I'm looking at getting the Test Run metrics etc. linked to a Test Case or a User Story so that that I can report on that?
Sorry for any inconvenience.
There is a great extension to add the test run results in the test case:
View Latest Test Result
Besides, there is a ticket about link Test Results back to ANY work item type, especially User Stories on the Developer Community, you could check this thread for some details.
Hope this helps.

Related

Which permissions are needed for create Azure devops test plan?

I was "Basic" user in Azure devops and I have started Basic+Test Plan free trial version. I can see Test plan in the menu. But When I going to Test plan page, cannot see Add Test plan button. I see only test plan that is created from before. I went detail old test plan, there is no add Test Suite button. How can I give permission for seeing the Add test plan button? Could you help me, please?
I share my screenshot as like following:
enter image description here
enter image description here
Which permissions are needed for create Azure devops test plan?
As far as I know, there are two possibilities for this issue.
You have enable the Basic+Test Plan free trial, but you do not change your access from Basic to Basic + Test Plans(Make sure Basic+Test Plan free trial period has not expired):
Go to the Organization Settings-> Users-> Select your account and change the access level from Basic to Basic + Test Plans:
You are no permission to manage test plan, go to the Project Settings->Project configuration-> Areas->Security, check if you have permission to manage test plans and suites:

Overview of Test outcome connected to test suite and tester in Azure Devops

I would like to get a simple overview, preferably some kind of list, of the test results (manual tests) connected to the test suite and who performed the test. The test plan summary in the "Enhanced test suite export" is the closest i have been able to get, but without the tester. Is it possible to get it in a list view or in an excel export instead?
I would like to get something like this:
Sorry but as I know we don't have such out-of-box feature to generate the Test report above.
You could add your request for this feature on our UserVoice site, which is our main forum for product suggestions. After suggest raised, you can vote and add your comments for this feedback. The product team would provide the updates if they view it.
Also you can use rest api Test Point - Get Points List to list the test points with given Test Plan ID and Test Suite ID, the response would also contain the tester information.

Getting Sorry, this action is not available in simulation for a Google Assistant App?

Even after using the phrase
Talk to Abhijit Kar
I keep getting: this action is not available in simulation
I have verified the google account as well.
I arrived at the test page using Test Draft Button.
Thanks to Nick Felker, I understood that whatever the app's name maybe, in this case Abhijit.
For testing we need to say talk to my test app.

Hide Workflow from SiteAdmin

We have a requirement in our project like we want to hide some workflows in siteadmin. We are using AEM 6.1. Please let us know if anybody has any solution. any help is highly appreciated.
Thanks,
Tushar
Using User Permissions
This can be controlled by user permissions. The permissions can be updated in useradmin console to remove read permission from the workflow models you want not be shown to user. Permissions can be managed via groups
Please note that there are 2 workflow models for Schedule Activation/Deactivation, the read access is required for these in case you want user to be able to use "Activate/Deactivate Later" OOTB functionality in siteadmin/damadmin console. These 2 are anyways not shown in workflow list while initiating workflow from siteadmin/damadmin console, but we should take care while removing read permissions.
This solution is verified.
Using Model changes
Model can updated to make it as system workflow refer Adobe Forum Link. Verify this one with Day Care to see if there is a side effect.

AD Azure Graph API does not return directorylinkchanges

I am using differential query feature provided by AD Azure graph apis as described here
Things are working fine except for one issue. The sample responses in the link show that membership changes are sent across as directorylinkchange objects but I do not receive any such objects with similar queries on making membership changes from the portal.
I am doing a GET to
https://graph.windows.net/<domain-name>/directoryObjects?api-version=2013-04-05&$filter=isof('Microsoft.WindowsAzure.ActiveDirectory.Group')%20or%20isof('Microsoft.WindowsAzure.ActiveDirectory.User')&deltaLink=cLbsN4TzLm92uH26XEe7Ph6HfE10VkRsxjmz8 ..[truncated]
I am not sure if I am missing something here as I am able to fetch other User and Group changes. So could anyone working on azure be able help me out on this one. Thanks !!
Ok. answer to my own question is , that the URL filter must contain all three object classes User, Group and Contact just like it is in the microsoft sample.
https://graph.windows.net/contoso.com/directoryObjects?api-version=2013-04-05&$filter=isof('Microsoft.WindowsAzure.ActiveDirectory.User')%20or%20isof('Microsoft.WindowsAzure.ActiveDirectory.Group')%20or%20isof('Microsoft.WindowsAzure.ActiveDirectory.Contact')