Exemplo n.º 1
0
 /// <summary>
 /// Executes the incoming WebHook request for event '<c>workitem.restored</c>'.
 /// </summary>
 /// <param name="context">Provides context for the <see cref="IWebHookHandler"/> for further processing the incoming WebHook.</param>
 /// <param name="payload">Strong-typed WebHook payload.</param>
 public virtual Task ExecuteAsync(WebHookHandlerContext context, WorkItemRestoredPayload payload)
 {
     return Task.FromResult(true);
 }
 /// <summary>
 /// Executes the incoming WebHook request for event '<c>workitem.restored</c>'.
 /// </summary>
 /// <param name="context">Provides context for the <see cref="IWebHookHandler"/> for further processing the incoming WebHook.</param>
 /// <param name="payload">Strong-typed WebHook payload.</param>
 public virtual Task ExecuteAsync(WebHookHandlerContext context, WorkItemRestoredPayload payload)
 {
     return(Task.FromResult(true));
 }
Exemplo n.º 3
0
        public void WorkItemRestoredPayload_Roundtrips()
        {
            // Arrange
            JObject data     = EmbeddedResource.ReadAsJObject("Microsoft.AspNet.WebHooks.Messages.workitem.restored.json");
            var     expected = new WorkItemRestoredPayload
            {
                SubscriptionId = "00000000-0000-0000-0000-000000000000",
                NotificationId = 7,
                Id             = "1ca023d6-6cff-49dd-b3d1-302b69311810",
                EventType      = "workitem.restored",
                PublisherId    = "tfs",
                Message        = new PayloadMessage
                {
                    Text     = "Bug #5 (Some great new idea!) restored by Jamal Hartnett.\r\n(http://good-company.some.ssl.host/web/wi.aspx?id=74e918bf-3376-436d-bd20-8e8c1287f465&id=5)",
                    Html     = "<a href=\"http://good-company.some.ssl.host/web/wi.aspx?id=74e918bf-3376-436d-bd20-8e8c1287f465&amp;id=5\">Bug #5</a> (Some great new idea!) restored by Jamal Hartnett.",
                    Markdown = "[Bug #5](http://good-company.some.ssl.host/web/wi.aspx?id=74e918bf-3376-436d-bd20-8e8c1287f465&id=5) (Some great new idea!) restored by Jamal Hartnett."
                },
                DetailedMessage = new PayloadMessage
                {
                    Text     = "Bug #5 (Some great new idea!) restored by Jamal Hartnett.\r\n(http://good-company.some.ssl.host/web/wi.aspx?id=74e918bf-3376-436d-bd20-8e8c1287f465&id=5)\r\n\r\n- State: New\r\n- Severity: 3 - Medium\r\n",
                    Html     = "<a href=\"http://good-company.some.ssl.host/web/wi.aspx?id=74e918bf-3376-436d-bd20-8e8c1287f465&amp;id=5\">Bug #5</a> (Some great new idea!) restored by Jamal Hartnett.<ul>\r\n<li>State: New</li>Severity: 3 - Medium</li></ul>",
                    Markdown = "[Bug #5](http://good-company.some.ssl.host/web/wi.aspx?id=74e918bf-3376-436d-bd20-8e8c1287f465&id=5) (Some great new idea!) restored by Jamal Hartnett.\r\n\r\n* State: New\r\n* Severity: 3 - Medium\r\n"
                },
                Resource = new WorkItemRestoredResource
                {
                    Id             = 5,
                    RevisionNumber = 1,
                    Fields         = new WorkItemFields
                    {
                        SystemAreaPath          = "GoodCompanyCloud",
                        SystemTeamProject       = "GoodCompanyCloud",
                        SystemIterationPath     = "GoodCompanyCloud\\Release 1\\Sprint 1",
                        SystemWorkItemType      = "Bug",
                        SystemState             = "New",
                        SystemReason            = "New defect reported",
                        SystemCreatedDate       = "2014-07-15T17:42:44.663Z".ToDateTime(),
                        SystemCreatedBy         = "Jamal Hartnett",
                        SystemChangedDate       = "2014-07-15T17:42:44.663Z".ToDateTime(),
                        SystemChangedBy         = "Jamal Hartnett",
                        SystemTitle             = "Some great new idea!",
                        MicrosoftCommonSeverity = "3 - Medium",
                        KanbanColumn            = "New"
                    },
                    Links = new WorkItemLinks
                    {
                        Self = new WorkItemLink {
                            Href = "http://good-company.some.ssl.host/DefaultCollection/_apis/wit/workItems/5"
                        },
                        WorkItemUpdates = new WorkItemLink {
                            Href = "http://good-company.some.ssl.host/DefaultCollection/_apis/wit/workItems/5/updates"
                        },
                        WorkItemRevisions = new WorkItemLink {
                            Href = "http://good-company.some.ssl.host/DefaultCollection/_apis/wit/workItems/5/revisions"
                        },
                        WorkItemType = new WorkItemLink {
                            Href = "http://good-company.some.ssl.host/DefaultCollection/_apis/wit/ea830882-2a3c-4095-a53f-972f9a376f6e/workItemTypes/Bug"
                        },
                        Fields = new WorkItemLink {
                            Href = "http://good-company.some.ssl.host/DefaultCollection/_apis/wit/fields"
                        },
                        Html = new WorkItemLink {
                            Href = "https://good-company.some.ssl.host/web/wi.aspx?id=d81542e4-cdfa-4333-b082-1ae2d6c3ad16&id=5"
                        },
                        WorkItemHistory = new WorkItemLink {
                            Href = "https://good-company.some.ssl.host/DefaultCollection/_apis/wit/workItems/5/history"
                        }
                    },
                    Url = new Uri("http://good-company.some.ssl.host/DefaultCollection/_apis/wit/workItems/5")
                },
                ResourceVersion    = "1.0",
                ResourceContainers = new PayloadResourceContainers
                {
                    Collection = new PayloadResourceContainer {
                        Id = "c12d0eb8-e382-443b-9f9c-c52cba5014c2"
                    },
                    Account = new PayloadResourceContainer {
                        Id = "f844ec47-a9db-4511-8281-8b63f4eaf94e"
                    },
                    Project = new PayloadResourceContainer {
                        Id = "be9b3917-87e6-42a4-a549-2bc06a7a878f"
                    }
                },
                CreatedDate = "2016-05-02T19:18:15.5707279Z".ToDateTime()
            };

            // Act
            var actual = data.ToObject <WorkItemRestoredPayload>();

            // Assert
            string expectedJson = JsonConvert.SerializeObject(expected);
            string actualJson   = JsonConvert.SerializeObject(actual);

            Assert.Equal(expectedJson, actualJson);
        }