org.cloudfoundry.java.test.core.MongoDbUtils.java Source code

Java tutorial

Introduction

Here is the source code for org.cloudfoundry.java.test.core.MongoDbUtils.java

Source

/*
 * Copyright 2013 the original author or authors.
 *
 * Licensed 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.cloudfoundry.java.test.core;

import java.util.List;

import com.mongodb.DB;
import com.mongodb.ServerAddress;
import org.springframework.data.mongodb.MongoDbFactory;
import org.springframework.stereotype.Component;

@Component
public class MongoDbUtils extends AbstractServiceUtils<MongoDbFactory> {

    public String checkAccess(MongoDbFactory mongoDbFactory) {
        try {
            DB db = mongoDbFactory.getDb();
            db.getMongo();
            return "ok";
        } catch (Exception e) {
            return "failed with " + e.getMessage();
        }
    }

    public String getUrl(MongoDbFactory mongoDbFactory) {
        DB mongoDb = mongoDbFactory.getDb();

        if (mongoDb != null) {

            StringBuilder builder = new StringBuilder();
            List<ServerAddress> serverAddresses = mongoDb.getMongo().getAllAddress();
            builder.append(getServerString(mongoDb, serverAddresses.get(0)));

            for (int i = 1; i < serverAddresses.size(); i++) {
                builder.append(", ").append(getServerString(mongoDb, serverAddresses.get(i)));
            }

            return builder.toString();
        }

        return "mongodb://fake.connection";
    }

    private String getServerString(DB mongoDb, ServerAddress serverAddress) {
        String host = serverAddress.getHost();
        int port = serverAddress.getPort();
        String name = mongoDb.getName();
        return String.format("mongodb://%s:%d/%s", host, port, name);
    }

}