summaryrefslogtreecommitdiff
path: root/idlc/test/parser
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-03-30 15:49:11 +0000
committerRüdiger Timm <rt@openoffice.org>2004-03-30 15:49:11 +0000
commit1e884b6b0e53bb62c2c589b2fb3d5970ae04f9ad (patch)
tree89722f83085e06139c35ebda24e588259e74d408 /idlc/test/parser
parentd778cdf66641e99774ce219822f49db8d949e1e9 (diff)
INTEGRATION: CWS sb14 (1.1.2); FILE ADDED
2004/03/05 08:35:57 sb 1.1.2.1: #i21150# Support for rest parameters; clean up.
Diffstat (limited to 'idlc/test/parser')
-rw-r--r--idlc/test/parser/constructor.tests195
1 files changed, 195 insertions, 0 deletions
diff --git a/idlc/test/parser/constructor.tests b/idlc/test/parser/constructor.tests
new file mode 100644
index 000000000000..ae51bcac62cb
--- /dev/null
+++ b/idlc/test/parser/constructor.tests
@@ -0,0 +1,195 @@
+#*************************************************************************
+#
+# $RCSfile: constructor.tests,v $
+#
+# $Revision: 1.2 $
+#
+# last change: $Author: rt $ $Date: 2004-03-30 16:49:11 $
+#
+# The Contents of this file are made available subject to the terms of
+# either of the following licenses
+#
+# - GNU Lesser General Public License Version 2.1
+# - Sun Industry Standards Source License Version 1.1
+#
+# Sun Microsystems Inc., October, 2000
+#
+# GNU Lesser General Public License Version 2.1
+# =============================================
+# Copyright 2000 by Sun Microsystems, Inc.
+# 901 San Antonio Road, Palo Alto, CA 94303, USA
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License version 2.1, as published by the Free Software Foundation.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+#
+# Sun Industry Standards Source License Version 1.1
+# =================================================
+# The contents of this file are subject to the Sun Industry Standards
+# Source License Version 1.1 (the "License"); You may not use this file
+# except in compliance with the License. You may obtain a copy of the
+# License at http://www.openoffice.org/license.html.
+#
+# Software provided under this License is provided on an "AS IS" basis,
+# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+# See the License for the specific provisions governing your rights and
+# obligations concerning the Software.
+#
+# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+#
+# Copyright: 2000 by Sun Microsystems, Inc.
+#
+# All Rights Reserved.
+#
+# Contributor(s): _______________________________________
+#
+#
+#*************************************************************************
+
+EXPECT SUCCESS "constructor.tests 1":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X;
+
+
+EXPECT SUCCESS "constructor.tests 2":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {};
+
+
+EXPECT SUCCESS "constructor.tests 3":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {
+ f();
+};
+
+
+EXPECT FAILURE "constructor.tests 4":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {
+ f();
+ f();
+};
+
+
+EXPECT FAILURE "constructor.tests 5":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ void f([in] any... p);
+};
+
+
+EXPECT FAILURE "constructor.tests 6":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ void f([out] any... p);
+};
+
+
+EXPECT SUCCESS "constructor.tests 7":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {
+ f([in] any... p);
+};
+
+
+EXPECT SUCCESS "constructor.tests 8":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+typedef any some;
+service S: X {
+ f([in] some... p);
+};
+
+
+EXPECT FAILURE "constructor.tests 9":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {
+ f([in] long p1, [in] any... p2);
+};
+
+
+EXPECT FAILURE "constructor.tests 10":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {
+ f([in] any... p2, [in] long p1);
+};
+
+
+EXPECT FAILURE "constructor.tests 11":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {
+ f([in] long p1, [in] long... p2);
+};
+
+
+EXPECT FAILURE "constructor.tests 12":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {
+ f([out] long p);
+};
+
+
+EXPECT FAILURE "constructor.tests 13":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+service S: X {
+ f([out] any... p);
+};
+
+
+EXPECT FAILURE "constructor.tests 14":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {};
+singleton S: X {
+ f();
+};