Skip to main content
summaryrefslogtreecommitdiffstats
blob: 692728364ee3d983b17c52ae8ae3c7dfd32bc7e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/*******************************************************************************
 * Copyright (c) 2002-2005 IBM Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   IBM - Initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsi.internal.core.profile.validator.impl.wsdl;

import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;

import javax.wsdl.Binding;
import javax.wsdl.Message;
import javax.wsdl.Operation;
import javax.wsdl.Part;
import javax.wsdl.extensions.soap.SOAPBinding;
import javax.wsdl.extensions.soap.SOAPBody;
import javax.wsdl.extensions.soap.SOAPOperation;

import org.eclipse.wst.wsi.internal.core.WSIConstants;
import org.eclipse.wst.wsi.internal.core.WSIException;
import org.eclipse.wst.wsi.internal.core.WSITag;
import org.eclipse.wst.wsi.internal.core.profile.TestAssertion;
import org.eclipse.wst.wsi.internal.core.profile.validator.EntryContext;
import org.eclipse.wst.wsi.internal.core.profile.validator.impl.AssertionProcessVisitor;
import org.eclipse.wst.wsi.internal.core.report.AssertionResult;
import org.eclipse.wst.wsi.internal.core.util.ErrorList;
import org.eclipse.wst.wsi.internal.core.util.WSDLUtil;
import org.eclipse.wst.wsi.internal.core.wsdl.traversal.WSDLTraversal;
import org.eclipse.wst.wsi.internal.core.wsdl.traversal.WSDLTraversalContext;


/**
 * BP2120.
 * <context>For a candidate wsdl:binding</context>
 * <assertionDescription>Each operation referenced by the binding results in a unique wire signature.</assertionDescription>
 */
public class BP2120 extends AssertionProcessVisitor implements WSITag
{
  private final WSDLValidatorImpl validator;

  /**
   * @param WSDLValidatorImpl
   */
  public BP2120(WSDLValidatorImpl impl)
  {
    super(impl);
    this.validator = impl;
  }

  private ErrorList errors = new ErrorList();
  private Set wares = new HashSet();

  /* (non-Javadoc)
   * @see org.wsi.wsdl.traversal.WSDLVisitor#visit(javax.wsdl.extensions.soap.SOAPBinding, java.lang.Object, org.wsi.wsdl.traversal.WSDLTraversalContext)
   */
  public void visit(
    SOAPBinding binding,
    Object parent,
    WSDLTraversalContext ctx)
  {
    String style =
      (binding.getStyle() == null)
        ? WSIConstants.ATTRVAL_SOAP_BIND_STYLE_DOC
        : binding.getStyle();
    ctx.addParameter("style", style);
  }

  /* (non-Javadoc)
   * @see org.wsi.wsdl.traversal.WSDLVisitor#visit(javax.wsdl.extensions.soap.SOAPOperation, java.lang.Object, org.wsi.wsdl.traversal.WSDLTraversalContext)
   */
  public void visit(
    SOAPOperation operation,
    Object parent,
    WSDLTraversalContext ctx)
  {
    String style = operation.getStyle();
    if (style != null)
      ctx.addParameter("style", style);
  }

  /* (non-Javadoc)
   * @see org.wsi.wsdl.traversal.WSDLVisitor#visit(javax.wsdl.extensions.soap.SOAPBody, java.lang.Object, org.wsi.wsdl.traversal.WSDLTraversalContext)
   */
  public void visit(SOAPBody body, Object parent, WSDLTraversalContext ctx)
  {
    List signature = new LinkedList();

    String style = (String) ctx.getParameter("style");

    // find corresponding message
    Operation op = ctx.getBindingOperation().getOperation();

    // if some links are broken, cancel processing
    if (op == null
      || op.getInput() == null
      || op.getInput().getMessage() == null)
      return;
    Message m = op.getInput().getMessage();

    List parts = WSDLUtil.getParts(op, m, body, style);
    if (parts == null)
      return;
    // !! ATTENTION
    // may be required to add types instead of part into signature ?

    // create signature
    signature.addAll(parts);

    // suppose that wire signature for
    // - rpc style = operation name + parts' qname
    // - document style = parts' qname
    if (WSIConstants.ATTRVAL_SOAP_BIND_STYLE_RPC.equals(style))
      signature.add(0, op.getName());

    if (sameSignature(wares, signature))
      errors.add(op.getName());
    else
      wares.add(signature);
  }

  /**
   * Check if the signature is in the set match.
   */
  private boolean sameSignature(Set signatureSet, List signature)
  {
    boolean same = false;

    // Get iterator for set
    Iterator set = signatureSet.iterator();
    while (set.hasNext() && !same)
    {
      // Get next signature from the set
      List nextSignature = (List) set.next();

      // Only continue if the signatures are the same size
      if (nextSignature.size() == signature.size())
      {
        Iterator iterator1 = nextSignature.iterator();
        Iterator iterator2 = signature.iterator();

        // Assume same until a difference is found
        same = true;

        // Process each list until a difference is found
        while (iterator1.hasNext() && iterator2.hasNext() && same)
        {
          // Get the next elements
          Object element1 = iterator1.next();
          Object element2 = iterator2.next();

          // If the element is a string, then if equal check parts
          if ((element1 instanceof String)
            && (element2 instanceof String)
            && (((String) element1).equals((String) element2)))
          {
            same = true;
          }

          // If the elements are parts, then check if they are equal
          else if ((element1 instanceof Part) && (element2 instanceof Part))
          {
            same = sameParts((Part) element1, (Part) element2);
          }

          else
          {
            same = false;
          }
        }
      }
    }

    return same;
  }

  /**
   * Check if two parts are the same.
   */
  private boolean sameParts(Part part1, Part part2)
  {
    boolean same = false;

    // If the part has an element then see if they are the same
    if (part1.getElementName() != null
      && part2.getElementName() != null
      && part1.getElementName().equals(part2.getElementName()))
    {
      same = true;
    }

    // If the part has an type then see if they are the same
    else if (
      part1.getTypeName() != null
        && part2.getTypeName() != null
        && part1.getTypeName().equals(part2.getTypeName()))
    {
      same = true;
    }

    else
    {
      same = false;
    }

    return same;
  }

  /* Validates the test assertion.
   * @see org.wsi.test.profile.validator.impl.BaseValidatorImpl.AssertionProcess#validate(org.wsi.test.profile.TestAssertion, org.wsi.test.profile.validator.EntryContext)
   */
  public AssertionResult validate(
    TestAssertion testAssertion,
    EntryContext entryContext)
    throws WSIException
  {
    result = AssertionResult.RESULT_FAILED;

    WSDLTraversal traversal = new WSDLTraversal();
    //VisitorAdaptor.adapt(this);
    traversal.setVisitor(this);
    traversal.visitSOAPBinding(true);
    traversal.visitSOAPBody(true);
    traversal.visitSOAPOperation(true);
    traversal.ignoreBindingOutput();
    traversal.traverse((Binding) entryContext.getEntry().getEntryDetail());

    // !! ATTENTION
    // Analyze soapbind:body:namespace and service targetNamespace            
    if (!errors.isEmpty())
    {
      result = AssertionResult.RESULT_FAILED;
      failureDetail = this.validator.createFailureDetail(errors.toString(), entryContext);
    }
    else
      result = AssertionResult.RESULT_PASSED;

    return validator.createAssertionResult(testAssertion, result, failureDetail);
  }
}

Back to the top