-
Notifications
You must be signed in to change notification settings - Fork 872
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: removed usage of ODatabaseDocumentTx from legacy benchmarks
- Loading branch information
Showing
23 changed files
with
226 additions
and
281 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
...src/test/java/com/orientechnologies/orient/test/database/base/OrientMonoThreadDBTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package com.orientechnologies.orient.test.database.base; | ||
|
||
import com.orientechnologies.orient.core.db.ODatabaseSession; | ||
import com.orientechnologies.orient.core.db.OrientDB; | ||
import com.orientechnologies.orient.core.db.OrientDBConfig; | ||
import com.orientechnologies.orient.core.util.OURLConnection; | ||
import com.orientechnologies.orient.core.util.OURLHelper; | ||
|
||
public abstract class OrientMonoThreadDBTest extends OrientMonoThreadTest { | ||
protected OrientDB context; | ||
protected ODatabaseSession database; | ||
protected OURLConnection conn; | ||
|
||
public OrientMonoThreadDBTest(int iCycles) { | ||
super(iCycles); | ||
} | ||
|
||
@Override | ||
public void init() { | ||
String url = System.getProperty("url"); | ||
conn = OURLHelper.parse(url); | ||
context = | ||
new OrientDB( | ||
conn.getType() + ":" + conn.getPath(), "root", "root", OrientDBConfig.defaultConfig()); | ||
database = context.open(conn.getDbName(), "admin", "admin"); | ||
} | ||
|
||
public void dropAndCreate() { | ||
String dbName = conn.getDbName(); | ||
if (context.exists(dbName)) { | ||
context.drop(dbName); | ||
} | ||
|
||
context.execute( | ||
"create database ? plocal users(admin identified by 'admin' role admin)", dbName); | ||
|
||
database = context.open(conn.getDbName(), "admin", "admin"); | ||
} | ||
|
||
@Override | ||
public void deinit() { | ||
if (database != null) database.close(); | ||
context.close(); | ||
super.deinit(); | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
...rc/test/java/com/orientechnologies/orient/test/database/base/OrientMultiThreadDBTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright 2010-2016 OrientDB LTD (http://orientdb.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.base; | ||
|
||
import com.orientechnologies.common.test.SpeedTestMultiThreads; | ||
import com.orientechnologies.common.test.SpeedTestThread; | ||
import com.orientechnologies.orient.core.db.ODatabaseSession; | ||
import com.orientechnologies.orient.core.db.OrientDB; | ||
import com.orientechnologies.orient.core.db.OrientDBConfig; | ||
import com.orientechnologies.orient.core.util.OURLConnection; | ||
import com.orientechnologies.orient.core.util.OURLHelper; | ||
|
||
public abstract class OrientMultiThreadDBTest extends SpeedTestMultiThreads { | ||
private OrientDB context; | ||
private OURLConnection conn; | ||
|
||
public OrientMultiThreadDBTest( | ||
int iCycles, int iThreads, Class<? extends SpeedTestThread> iThreadClass) { | ||
super(iCycles, iThreads, iThreadClass); | ||
} | ||
|
||
@Override | ||
public void init() throws Exception { | ||
super.init(); | ||
String url = System.getProperty("url"); | ||
conn = OURLHelper.parse(url); | ||
context = | ||
new OrientDB( | ||
conn.getType() + ":" + conn.getPath(), "root", "root", OrientDBConfig.defaultConfig()); | ||
} | ||
|
||
public void dropAndCreate() { | ||
String dbName = conn.getDbName(); | ||
if (context.exists(dbName)) { | ||
context.drop(dbName); | ||
} | ||
|
||
context.execute( | ||
"create database ? plocal users(admin identified by 'admin' role admin)", dbName); | ||
} | ||
|
||
public ODatabaseSession openDB() { | ||
return context.open(conn.getDbName(), "admin", "admin"); | ||
} | ||
|
||
public OrientDB getContext() { | ||
return context; | ||
} | ||
|
||
@Override | ||
public void deinit() throws Exception { | ||
context.close(); | ||
super.deinit(); | ||
} | ||
} |
26 changes: 0 additions & 26 deletions
26
.../src/test/java/com/orientechnologies/orient/test/database/base/OrientMultiThreadTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.