Author: eevans
Date: Wed Sep 1 16:41:22 2010
New Revision: 991598
URL: http://svn.apache.org/viewvc?rev=991598&view=rev
Log:
stubs for restructured avro system tests
Patch by eevans
Added:
cassandra/trunk/test/system/test_avro_meta.py
cassandra/trunk/test/system/test_avro_standard.py
cassandra/trunk/test/system/test_avro_super.py
cassandra/trunk/test/system/test_avro_system.py
Added: cassandra/trunk/test/system/test_avro_meta.py
URL:
http://svn.apache.org/viewvc/cassandra/trunk/test/system/test_avro_meta.py?rev=991598&view=auto
==============================================================================
--- cassandra/trunk/test/system/test_avro_meta.py (added)
+++ cassandra/trunk/test/system/test_avro_meta.py Wed Sep 1 16:41:22 2010
@@ -0,0 +1,27 @@
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from . import AvroTester
+from avro.ipc import AvroRemoteException
+
+class TestMetaOperations(AvroTester):
+ """
+ Cluster meta operations.
+ """
+ pass
+ def test_test(self):
+ pass
Added: cassandra/trunk/test/system/test_avro_standard.py
URL:
http://svn.apache.org/viewvc/cassandra/trunk/test/system/test_avro_standard.py?rev=991598&view=auto
==============================================================================
--- cassandra/trunk/test/system/test_avro_standard.py (added)
+++ cassandra/trunk/test/system/test_avro_standard.py Wed Sep 1 16:41:22 2010
@@ -0,0 +1,27 @@
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from . import AvroTester
+from avro.ipc import AvroRemoteException
+
+class TestStandardOperations(AvroTester):
+ """
+ Operations on Standard column families
+ """
+ pass
+ def test_test(self):
+ pass
Added: cassandra/trunk/test/system/test_avro_super.py
URL:
http://svn.apache.org/viewvc/cassandra/trunk/test/system/test_avro_super.py?rev=991598&view=auto
==============================================================================
--- cassandra/trunk/test/system/test_avro_super.py (added)
+++ cassandra/trunk/test/system/test_avro_super.py Wed Sep 1 16:41:22 2010
@@ -0,0 +1,27 @@
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from . import AvroTester
+from avro.ipc import AvroRemoteException
+
+class TestSuperOperations(AvroTester):
+ """
+ Operations on Super column families
+ """
+ pass
+ def test_test(self):
+ pass
Added: cassandra/trunk/test/system/test_avro_system.py
URL:
http://svn.apache.org/viewvc/cassandra/trunk/test/system/test_avro_system.py?rev=991598&view=auto
==============================================================================
--- cassandra/trunk/test/system/test_avro_system.py (added)
+++ cassandra/trunk/test/system/test_avro_system.py Wed Sep 1 16:41:22 2010
@@ -0,0 +1,27 @@
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from . import AvroTester
+from avro.ipc import AvroRemoteException
+
+class TestSystemOperations(AvroTester):
+ """
+ Cassandra system operations.
+ """
+ pass
+ def test_test(self):
+ pass