/* * 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. */ package org.apache.brooklyn.entity.nosql.couchdb; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertTrue; import java.util.HashMap; import java.util.Map; import org.apache.brooklyn.core.entity.Attributes; import org.apache.brooklyn.entity.nosql.couchdb.CouchDBNode; import org.jcouchdb.db.Database; import org.jcouchdb.db.Server; import org.jcouchdb.db.ServerImpl; /** * CouchDB test framework for integration and live tests, using jcouchdb API. */ public class JcouchdbSupport { private CouchDBNode node; public JcouchdbSupport(CouchDBNode node) { this.node = node; } /** * Exercise the {@link CouchDBNode} using the jcouchdb API. */ public void jcouchdbTest() throws Exception { Server server = new ServerImpl(node.getAttribute(Attributes.HOSTNAME), node.getHttpPort()); assertTrue(server.createDatabase("brooklyn")); Database db = new Database(node.getAttribute(Attributes.HOSTNAME), node.getHttpPort(), "brooklyn"); // create a hash map document with two fields Map<String,String> doc = new HashMap<String, String>(); doc.put("first", "one"); doc.put("second", "two"); // create the document in couchdb int before = db.listDocuments(null, null).getTotalRows(); db.createDocument(doc); int after = db.listDocuments(null, null).getTotalRows(); assertEquals(before + 1, after); } /** * Write to a {@link CouchDBNode} using the jcouchdb API. */ protected void writeData() throws Exception { } /** * Read from a {@link CouchDBNode} using the jcouchdb API. */ protected void readData() throws Exception { } }