summaryrefslogtreecommitdiff
path: root/idlc/test
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-03-30 15:49:00 +0000
committerRüdiger Timm <rt@openoffice.org>2004-03-30 15:49:00 +0000
commitd778cdf66641e99774ce219822f49db8d949e1e9 (patch)
treeebc361326ce1e8305fecb77704a78773d927ddcb /idlc/test
parent6efa6ad363f995c29cbb35a22359a1d674645399 (diff)
INTEGRATION: CWS sb14 (1.1.2); FILE ADDED
2004/03/15 09:54:49 sb 1.1.2.1: #i21150# Added support for bound interface attributes (renamed from attributeexceptions.tests).
Diffstat (limited to 'idlc/test')
-rw-r--r--idlc/test/parser/attribute.tests338
1 files changed, 338 insertions, 0 deletions
diff --git a/idlc/test/parser/attribute.tests b/idlc/test/parser/attribute.tests
new file mode 100644
index 000000000000..e5b016a986e0
--- /dev/null
+++ b/idlc/test/parser/attribute.tests
@@ -0,0 +1,338 @@
+#*************************************************************************
+#
+# $RCSfile: attribute.tests,v $
+#
+# $Revision: 1.2 $
+#
+# last change: $Author: rt $ $Date: 2004-03-30 16:49:00 $
+#
+# 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 "attribute.tests 1":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute] long a;
+};
+
+
+EXPECT SUCCESS "attribute.tests 2":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute] long a {};
+};
+
+
+EXPECT FAILURE "attribute.tests 3":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute] long a {
+ get raises ();
+ };
+};
+
+
+EXPECT SUCCESS "attribute.tests 4":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute] long a {
+ get raises (E1);
+ };
+};
+
+
+EXPECT SUCCESS "attribute.tests 5":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute] long a {
+ set raises (E1);
+ };
+};
+
+
+EXPECT SUCCESS "attribute.tests 6":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute] long a {
+ get raises (E1);
+ set raises (E1);
+ };
+};
+
+
+EXPECT SUCCESS "attribute.tests 7":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute] long a {
+ set raises (E1);
+ get raises (E1);
+ };
+};
+
+
+EXPECT FAILURE "attribute.tests 8":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute] long a {
+ get raises (E1);
+ get raises (E1);
+ };
+};
+
+
+EXPECT FAILURE "attribute.tests 9":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ void E1();
+ [attribute] long a {
+ get raises (E1);
+ };
+};
+
+
+EXPECT FAILURE "attribute.tests 10":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute] long E1 {
+ get raises (E1);
+ };
+};
+
+
+EXPECT SUCCESS "attribute.tests 11":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute] long a {
+ get raises (E1,E1);
+ };
+};
+
+
+EXPECT SUCCESS "attribute.tests 12":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute, readonly] long a {
+ get raises (E1);
+ };
+};
+
+
+EXPECT FAILURE "attribute.tests 13":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+exception E1 {};
+interface X {
+ [attribute, readonly] long a {
+ set raises (E1);
+ };
+};
+
+
+EXPECT FAILURE "attribute.tests 14":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [] long a;
+};
+
+
+EXPECT SUCCESS "attribute.tests 15":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute] long a;
+};
+
+
+EXPECT FAILURE "attribute.tests 16":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, property] long a;
+};
+
+
+EXPECT FAILURE "attribute.tests 17":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, optional] long a;
+};
+
+
+EXPECT FAILURE "attribute.tests 18":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, maybevoid] long a;
+};
+
+
+EXPECT FAILURE "attribute.tests 19":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, constrained] long a;
+};
+
+
+EXPECT FAILURE "attribute.tests 20":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, transient] long a;
+};
+
+
+EXPECT FAILURE "attribute.tests 21":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, maybeambigious] long a;
+};
+
+
+EXPECT FAILURE "attribute.tests 22":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, maybedefault] long a;
+};
+
+
+EXPECT FAILURE "attribute.tests 23":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, removeable] long a;
+};
+
+
+EXPECT SUCCESS "attribute.tests 24":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, bound] long a;
+};
+
+
+EXPECT SUCCESS "attribute.tests 25":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [bound, attribute] long a;
+};
+
+
+EXPECT SUCCESS "attribute.tests 26":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, readonly] long a;
+};
+
+
+EXPECT SUCCESS "attribute.tests 27":
+module com { module sun { module star { module uno {
+ interface XInterface {};
+}; }; }; };
+interface X {
+ [attribute, bound, readonly] long a;
+};