blob: 6b834d2879a94c2bcb1bdaa6a636f1687b450d92 [file] [log] [blame]
package org.apache.helix.mock;
/*
* 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.
*/
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.helix.manager.zk.ZNRecordSerializer;
import org.apache.helix.manager.zk.ZkAsyncCallbacks;
import org.apache.helix.zookeeper.impl.client.ZkClient;
import org.apache.helix.zookeeper.api.client.HelixZkClient;
public class MockZkClient extends ZkClient implements HelixZkClient {
Map<String, byte[]> _dataMap;
public MockZkClient(String zkAddress) {
super(zkAddress);
_dataMap = new HashMap<>();
setZkSerializer(new ZNRecordSerializer());
}
@Override
public void asyncGetData(final String path,
final ZkAsyncCallbacks.GetDataCallbackHandler cb) {
if (_dataMap.containsKey(path)) {
if (_dataMap.get(path) == null) {
cb.processResult(4, path, null, _dataMap.get(path), null);
} else {
cb.processResult(0, path, null, _dataMap.get(path), null);
}
} else {
super.asyncGetData(path, cb);
}
}
public List<String> getChildren(final String path) {
List<String> children = super.getChildren(path);
for (String p : _dataMap.keySet()) {
if (p.contains(path)) {
String[] paths = p.split("/");
children.add(paths[paths.length-1]);
}
}
return children;
}
public void putData(String path, byte[] data) {
_dataMap.put(path, data);
}
public byte[] removeData(String path) {
return _dataMap.remove(path);
}
}