Package com.orientechnologies.orient.test.database.auto

Source Code of com.orientechnologies.orient.test.database.auto.ConcurrentCommandAndOpenTest

/*
* Copyright 2010-2012 Luca Garulli (l.garulli--at--orientechnologies.com)
*
* 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 com.orientechnologies.orient.test.database.auto;

import com.orientechnologies.orient.core.config.OGlobalConfiguration;
import org.testng.Assert;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Optional;
import org.testng.annotations.Parameters;
import org.testng.annotations.Test;

import com.orientechnologies.orient.core.command.script.OCommandScript;
import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx;
import com.orientechnologies.orient.core.sql.OCommandSQL;

@Test
public class ConcurrentCommandAndOpenTest extends DocumentDBBaseTest {
  protected final static int MAX_CONNS = 10;

  @Parameters(value = "url")
  public ConcurrentCommandAndOpenTest(@Optional String url) {
    super(url);
  }

  @Test
  public void concurrentCommands() throws Exception {
    OGlobalConfiguration.DB_POOL_MIN.setValue(1);
    OGlobalConfiguration.DB_POOL_MAX.setValue(MAX_CONNS);

    final Thread thread = new Thread(new Runnable() {
      @Override
      public void run() {
        ODatabaseDocumentTx db = new ODatabaseDocumentTx(url).open("admin", "admin");
        try {
          System.out.println("Start sleeping...");
          db.command(new OCommandScript("SQL", "sleep 5000")).execute();
          System.out.println("Sleeping done!");

        } finally {
          db.close();
        }
      }
    }, "Test long sleep");

    thread.start();

    Thread.sleep(1000);

    int commandExecuted = 0;
    int iterations = MAX_CONNS * 5;
    for (int i = 0; i < iterations; ++i) {
      System.out.println("Open database " + i);
      ODatabaseDocumentTx db = new ODatabaseDocumentTx(url).open("admin", "admin");
      try {
        db.command(new OCommandSQL("select from OUser")).execute();
        System.out.println("Command executed " + i);
        commandExecuted++;
      } finally {
        db.close();
      }
    }

    System.out.println("Waiting for the sleeping thread...");
    thread.join();
    System.out.println("Done!");

    Assert.assertEquals(commandExecuted, iterations);
  }
}
TOP

Related Classes of com.orientechnologies.orient.test.database.auto.ConcurrentCommandAndOpenTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.