/JavaEE/Portlets/WSSPortlet/tests/com/sun/portal/portlets/wss/helpers/WSSAlertsHelperTest.java

http://bevy.googlecode.com/ · Java · 111 lines · 44 code · 21 blank · 46 comment · 0 complexity · 07e8a8ad13f09fa6698b83769261183d MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. *
  19. *
  20. * Author Of This Original Software : Sandeep Soni [ Sandeep.Soni at gmail dot com ]
  21. * With Active Contributions from Murali Krishna Reddy
  22. * Do Let Me Know by Email if you used the software and found it useful.
  23. *
  24. */
  25. /*
  26. * WSSAlertsHelperTest.java
  27. * JUnit based test
  28. *
  29. * Created on August 10, 2006, 2:20 PM
  30. */
  31. package com.sun.portal.portlets.wss.helpers;
  32. import junit.framework.*;
  33. import com.microsoft.schemas.sharepoint.soap.alerts.*;
  34. import java.net.*;
  35. //import com.sun.xml.rpc.client.StubBase;
  36. import java.rmi.RemoteException;
  37. import javax.xml.rpc.handler.HandlerChain;
  38. import javax.xml.rpc.handler.HandlerInfo;
  39. import javax.xml.namespace.QName;
  40. //import com.sun.xml.rpc.encoding.*;
  41. //import com.sun.xml.rpc.client.ServiceExceptionImpl;
  42. //import com.sun.xml.rpc.util.exception.*;
  43. //import com.sun.xml.rpc.soap.SOAPVersion;
  44. //import com.sun.xml.rpc.client.HandlerChainImpl;
  45. //
  46. import javax.xml.rpc.*;
  47. import java.util.Properties;
  48. import java.io.IOException;
  49. import java.io.FileInputStream;
  50. /**
  51. * @author root
  52. */
  53. public class WSSAlertsHelperTest extends TestCase {
  54. String listSoapAddress = null;
  55. String sitename = null;
  56. String userName = null;
  57. String password = null;
  58. public WSSAlertsHelperTest(String testName) {
  59. super(testName);
  60. }
  61. protected void setUp() throws Exception {
  62. Properties properties = new Properties();
  63. try {
  64. properties.load(new FileInputStream(System.getProperty("sharepoint.test.properties")));
  65. sitename = properties.getProperty("wss.site.url");
  66. listSoapAddress = sitename + "/_vti_bin/Alerts.asmx";
  67. userName = properties.getProperty("wss.site.username");
  68. password = properties.getProperty("wss.site.password");
  69. } catch (IOException e) {
  70. System.out.println("Not able to Read the Specified File");
  71. }
  72. }
  73. protected void tearDown() throws Exception {
  74. }
  75. public static Test suite() {
  76. TestSuite suite = new TestSuite(WSSAlertsHelperTest.class);
  77. return suite;
  78. }
  79. /**
  80. * Test of getAllAlerts method, of class com.sun.portal.portlets.wss.helpers.WSSAlertsHelper.
  81. */
  82. public void testGetAllAlerts() throws Exception {
  83. System.out.println("getAllAlerts");
  84. int expResult = 0;
  85. AlertInfo result = WSSAlertsHelper.getAllAlerts(listSoapAddress, userName, password);
  86. // System.out.println(result.getAlerts().getAlert().toString());
  87. // assertEquals("testGetAllAlerts", expResult, ((Alert[]) result.getAlerts().getAlert()).length);
  88. }
  89. }