123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /**
- * 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.
- */
- #include <cppunit/extensions/HelperMacros.h>
- #include "CppAssertHelper.h"
- #include <sys/socket.h>
- #include <unistd.h>
- #include <zookeeper.h>
- #include "Util.h"
- #include "WatchUtil.h"
- #ifdef THREADED
- class Zookeeper_readOnly : public CPPUNIT_NS::TestFixture {
- CPPUNIT_TEST_SUITE(Zookeeper_readOnly);
- CPPUNIT_TEST(testReadOnly);
- CPPUNIT_TEST_SUITE_END();
- static void watcher(zhandle_t* zh, int type, int state,
- const char* path, void* v) {
- watchctx_t *ctx = (watchctx_t*)v;
- if (state==ZOO_CONNECTED_STATE || state==ZOO_READONLY_STATE) {
- ctx->connected = true;
- } else {
- ctx->connected = false;
- }
- if (type != ZOO_SESSION_EVENT) {
- evt_t evt;
- evt.path = path;
- evt.type = type;
- ctx->putEvent(evt);
- }
- }
- FILE *logfile;
- public:
- Zookeeper_readOnly() {
- logfile = openlogfile("Zookeeper_readOnly");
- }
- ~Zookeeper_readOnly() {
- if (logfile) {
- fflush(logfile);
- fclose(logfile);
- logfile = 0;
- }
- }
- void setUp() {
- zoo_set_log_stream(logfile);
- }
- void startReadOnly() {
- char cmd[1024];
- sprintf(cmd, "%s startReadOnly", ZKSERVER_CMD);
- CPPUNIT_ASSERT(system(cmd) == 0);
- }
- void stopPeer() {
- char cmd[1024];
- sprintf(cmd, "%s stop", ZKSERVER_CMD);
- CPPUNIT_ASSERT(system(cmd) == 0);
- }
- void testReadOnly() {
- startReadOnly();
- watchctx_t watch;
- zhandle_t* zh = zookeeper_init("localhost:22181",
- watcher,
- 10000,
- NULL,
- &watch,
- ZOO_READONLY);
- watch.zh = zh;
- CPPUNIT_ASSERT(zh != 0);
- sleep(1);
- int len = 1024;
- char buf[len];
- int res = zoo_get(zh, "/", 0, buf, &len, 0);
- CPPUNIT_ASSERT_EQUAL((int)ZOK, res);
- char path[1024];
- res = zoo_create(zh, "/test", buf, 10, &ZOO_OPEN_ACL_UNSAFE, 0, path,
- 512);
- CPPUNIT_ASSERT_EQUAL((int)ZNOTREADONLY, res);
- stopPeer();
- }
- };
- CPPUNIT_TEST_SUITE_REGISTRATION(Zookeeper_readOnly);
- #endif
|