Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exception when getting a connection in many unit tests #10

Open
trezker opened this issue Jul 18, 2017 · 0 comments
Open

Exception when getting a connection in many unit tests #10

trezker opened this issue Jul 18, 2017 · 0 comments

Comments

@trezker
Copy link

trezker commented Jul 18, 2017

I'm having an issue with unittesting as the mongo connections cause an exception. Minimal test program provided. Is there a way to get around this or is it a problem with mondo?

I have tried this without the static pool thing as well as without using pool and getting connection directly with Mongo(...), same error.

core.exception.InvalidMemoryOperationError@src/core/exception.d(693): Invalid memory operation

import mondo;

class MongoAlloc {
static:
private MongoPool pool;
public Mongo GetConnection() {
if(!pool)
pool = new MongoPool("mongodb://localhost");
return pool.pop;
}
}

unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}
unittest {
Mongo mongo = MongoAlloc.GetConnection();
}

void main()
{
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant