Module: wine Branch: master Commit: 297570894b8cadef0a91abd11686c2ab2a65e66d URL: https://source.winehq.org/git/wine.git/?a=commit;h=297570894b8cadef0a91abd11...
Author: Owen Rudge orudge@codeweavers.com Date: Tue Jun 19 09:59:24 2018 +0100
wsdapi/tests: Add tests for AppSequence in Probe message.
Signed-off-by: Owen Rudge orudge@codeweavers.com Signed-off-by: Huw Davies huw@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/wsdapi/tests/discovery.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+)
diff --git a/dlls/wsdapi/tests/discovery.c b/dlls/wsdapi/tests/discovery.c index 84aa67d..6303341 100644 --- a/dlls/wsdapi/tests/discovery.c +++ b/dlls/wsdapi/tests/discovery.c @@ -48,6 +48,7 @@ static const char testProbeMessage[] = "<?xml version="1.0" encoding="utf-8" "xmlns:grog="http://more.tests/%5C%22%3Esoap:Headerwsa:Tourn:schemas-xmlsoap-org:ws:2005:04:discovery</wsa:To>" "wsa:Actionhttp://schemas.xmlsoap.org/ws/2005/04/discovery/Probe</wsa:Action>" "wsa:MessageIDurn:uuid:%s</wsa:MessageID>" + "<wsd:AppSequence InstanceId="21" SequenceId="urn:uuid:638abee8-124d-4b6a-8b85-8cf2837a2fd2" MessageNumber="14"></wsd:AppSequence>" "grog:PerryExtraInfo</grog:Perry></soap:Header>" "soap:Bodywsd:Probewsd:Typesgrog:Cider</wsd:Types>grog:LagerMoreInfo</grog:Lager></wsd:Probe></soap:Body></soap:Envelope>";
@@ -533,6 +534,7 @@ static HRESULT WINAPI IWSDiscoveryPublisherNotifyImpl_ProbeHandler(IWSDiscoveryP static const WCHAR perry[] = {'P','e','r','r','y',0}; static const WCHAR extra_info[] = {'E','x','t','r','a','I','n','f','o',0}; WSD_PROBE *probe_msg = (WSD_PROBE *) pSoap->Body; + WSD_APP_SEQUENCE *appseq = (WSD_APP_SEQUENCE *) pSoap->Header.AppSequence;
ok(pSoap->Body != NULL, "pSoap->Body == NULL\n"); ok(pSoap->Header.To != NULL && lstrcmpW(pSoap->Header.To, discoveryTo) == 0, @@ -556,6 +558,22 @@ static HRESULT WINAPI IWSDiscoveryPublisherNotifyImpl_ProbeHandler(IWSDiscoveryP if ((ret != RPC_S_OK) || (UuidEqual(&uuid, &probe_message_id, &ret) == FALSE)) return S_OK; }
+ ok(appseq != NULL, "pSoap->Header.AppSequence == NULL\n"); + + if (appseq != NULL) + { + static const WCHAR seq_id[] = {'u','r','n',':','u','u','i','d',':','6','3','8','a','b','e','e','8','-', + '1','2','4','d','-','4','b','6','a','-','8','b','8','5','-', + '8','c','f','2','8','3','7','a','2','f','d','2',0}; + + ok(appseq->InstanceId == 21, "pSoap->Header.AppSequence->InstanceId = %s\n", + wine_dbgstr_longlong(appseq->InstanceId)); + ok(lstrcmpW(appseq->SequenceId, seq_id) == 0, "pSoap->Header.AppSequence->SequenceId = '%s'\n", + wine_dbgstr_w(appseq->SequenceId)); + ok(appseq->MessageNumber == 14, "pSoap->Header.AppSequence->MessageNumber = %s\n", + wine_dbgstr_longlong(appseq->MessageNumber)); + } + verify_wsdxml_any_text("pSoap->Header.AnyHeaders", pSoap->Header.AnyHeaders, uri_more_tests_no_slash, prefix_grog, perry, extra_info);