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

exclude System Collections in listCollectionNames() #3320

Open
masterbater opened this issue Mar 12, 2025 · 1 comment · May be fixed by #3327
Open

exclude System Collections in listCollectionNames() #3320

masterbater opened this issue Mar 12, 2025 · 1 comment · May be fixed by #3327

Comments

@masterbater
Copy link
Contributor

masterbater commented Mar 12, 2025

MongoDB stores system information in collections that use the .system.* namespace, which MongoDB reserves for internal use. Do not create collections that begin with system.

https://www.mongodb.com/docs/manual/reference/system-collections/

.system.profile
.system.js
.system.views

Is your feature request related to a problem?

system.views is a systems collection but in laravel includes it in the result which causes issue with testing traits that drops all tables

Other system collection that could in the testing database
.system.profile
.system.js

Describe the solution you'd like

Exclude it when dropping all tables, like using migrate:fresh, testing traits like RefreshDatabase, DatabaseMigration

Additional context

Image

Temporary solution add a custom command, but I strongly think that system collections should be excluded in listCollectionNames

$database = DB::connection('mongodb')->getMongoDB();

    foreach ($database->listCollectionNames() as $collectionName) {

        if (in_array($collectionName, ['system.views', 'system.profile'])) {
            continue;
        }
        DB::table($collectionName)->delete();
    }
@masterbater masterbater changed the title exclude System Collections when enumerating collection names exclude System Collections listCollectionNames() Mar 12, 2025
@masterbater masterbater changed the title exclude System Collections listCollectionNames() exclude System Collections in listCollectionNames() Mar 12, 2025
@masterbater
Copy link
Contributor Author

Its seems in mongodb driver for nodejs like getCollectionNames like listCollectionNames in php driver will return system collections, so I think its up to laravel-mongodb package to handle this issue and not in the driver

Image

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

Successfully merging a pull request may close this issue.

1 participant