2
2
3
3
Welcome, we really appreciate if you're considering to contribute to effect-mongodb!
4
4
5
- ## Setting Up Your Environment
5
+ - [ Initial setup] ( #initial-setup )
6
+ - [ Making changes] ( #making-changes )
7
+ - [ Tests] ( #tests )
6
8
7
- 1 . Fork this repo
8
- 2 . Clone your forked repo
9
+ ## Initial setup
10
+
11
+ Install the following tools to set up your environment:
12
+
13
+ - [ Node.js] ( https://nodejs.org/en ) 20 or newer
14
+ - [ pnpm] ( https://pnpm.io/ ) 9.4.0 or newer
15
+ - [ Docker] ( https://www.docker.com/ ) for running tests using ` @testcontainers/mongodb `
16
+
17
+ Then, you can fork the repository and install the dependencies:
18
+
19
+ 1 . Fork this repository on GitHub
20
+ 2 . Clone your forked repo:
9
21
``` shell
10
22
git clone https://github.com/< username> /effect-mongodb && cd effect-mongodb
11
23
```
12
- 3 . Create a new branch
13
- ``` shell
14
- git checkout -b my-branch
15
- ```
16
- 4. Install dependencies
24
+ 3 . Install dependencies:
17
25
``` shell
18
26
pnpm install
19
27
```
28
+ 4 . Optionally, verify that everything is working correctly:
29
+ ``` shell
30
+ pnpm check
31
+ pnpm test
32
+ ```
33
+
34
+ ## Making changes
20
35
21
- # # Making Changes
36
+ Create a new branch for your changes
22
37
23
- # ## Implement Your Changes
38
+ ``` shell
39
+ git checkout -b my-branch
40
+ ```
24
41
25
42
Make the changes you propose to the codebase. If your changes impact functionality, please ** add corresponding tests**
26
43
to validate your updates.
27
44
28
- # ## Validate Your Changes
45
+ ### Validate your changes
29
46
30
47
Run the following commands to ensure your changes do not introduce any issues:
31
48
@@ -38,9 +55,7 @@ Run the following commands to ensure your changes do not introduce any issues:
38
55
- If you encounter style issues, use ` pnpm lint-fix ` to automatically correct some of these.
39
56
- ` pnpm dtslint ` : Run type-level tests.
40
57
41
- ### Document Your Changes
42
-
43
- **Changeset Documentation**
58
+ ### Document your changes
44
59
45
60
Before committing your changes, document them with a changeset. This process helps in tracking modifications and
46
61
effectively communicating them to the project team and users:
@@ -56,44 +71,95 @@ During the changeset creation process, you will be prompted to select the approp
56
71
- ** minor** : Choose this for new features that enhance functionality but do not disrupt existing features.
57
72
- ** major** : Select this for any changes that result in backward-incompatible modifications to the library.
58
73
59
- # # Finalizing Your Contribution
74
+ ### Commit your changes
60
75
61
- # ## Commit Your Changes
62
-
63
- Once you have documented your changes with a changeset, it’s time to commit them to the repository. Use a clear and
64
- descriptive commit message, which could be the same message you used in your changeset:
76
+ Once you have documented your changes, commit them to the repository:
65
77
66
78
``` bash
67
- git commit -am ' Add some feature'
79
+ git commit -am " Add some feature"
68
80
```
69
81
70
- # ### Linking to Issues
82
+ #### Linking to issues
71
83
72
84
If your commit addresses an open issue, reference the issue number directly in your commit message. This helps to link
73
- your contribution clearly to specific tasks or bug reports. Additionally, if your commit resolves the issue, you can
74
- indicate this by adding a phrase like ` " , closes #<issue-number>" ` . For example:
85
+ your contribution clearly to specific tasks or bug reports.
86
+
87
+ For example:
75
88
76
89
``` bash
77
- git commit -am ' Add some feature, closes #123'
78
- ` ` `
90
+ # Reference issue #123
91
+ git commit -am " Add some feature (#123) "
79
92
80
- This practice not only helps in tracking the progress of issues but also automatically closes the issue when the commit
81
- is merged, streamlining project management.
93
+ # Close the issue #123
94
+ git commit -am " Add some feature (close #123)"
95
+ ```
82
96
83
- # ## Push to Your Fork
97
+ ### Push to your fork
84
98
85
- Push the changes up to your GitHub fork:
99
+ Push the changes to your GitHub fork:
86
100
87
101
``` bash
88
102
git push origin my-branch
89
103
```
90
104
91
- # ## Create a Pull Request
105
+ ### Create a pull request
92
106
93
107
Open a pull request against the main branch on the original repository.
94
108
95
109
Please be patient! We will do our best to review your pull request as soon as possible.
96
110
97
- # # Release a new version (for maintainers)
111
+ ## Tests
112
+
113
+ We use [ @testcontainers/mongodb ] ( https://node.testcontainers.org/modules/mongodb/ ) to run MongoDB in a Docker container
114
+ during tests.
98
115
99
- Merge the PRs automatically created on GitHub with the name " Version Packages" .
116
+ ### Write a test
117
+
118
+ In the ` test ` directory of a package, like [ packages/effect-mongodb/test] ( packages/effect-mongodb/test ) , create a
119
+ new file ` <test suite name>.test.ts ` .
120
+
121
+ Use the ` describeMongo ` function to automatically setup your test suite with a MongoDB connection.
122
+
123
+ ``` typescript
124
+ import * as Db from " effect-mongodb/Db"
125
+ import * as DocumentCollection from " effect-mongodb/DocumentCollection"
126
+ import * as Effect from " effect/Effect"
127
+ import * as O from " effect/Option"
128
+ import { ObjectId } from " mongodb"
129
+ import { expect , test } from " vitest"
130
+ import { describeMongo } from " ./support/describe-mongo.js"
131
+
132
+ describeMongo (" My tests" , (ctx ) => {
133
+ test (" find one" , async () => {
134
+ const program = Effect .gen (function * (_ ) {
135
+ const db = yield * _ (ctx .database )
136
+ const collection = Db .documentCollection (db , " find-one" )
137
+
138
+ yield * _ (
139
+ DocumentCollection .insertMany (collection , [{ name: " john" }, { name: " alfred" }])
140
+ )
141
+
142
+ return yield * _ (DocumentCollection .findOne (collection , { name: " john" }))
143
+ })
144
+
145
+ const result = await Effect .runPromise (program )
146
+
147
+ expect (result ).toEqual (O .some ({ _id: expect .any (ObjectId ), name: " john" }))
148
+ })
149
+ })
150
+ ```
151
+
152
+ ### Inspect MongoDB test instance
153
+
154
+ 1 . Export ` EFFECT_MONGODB_DEBUG=true ` environment variable
155
+ 2 . Run the tests (by default in watch mode) and you will see the connection string in the console output
156
+ ```
157
+ [EFFECT_MONGODB_DEBUG] MongoDB connection string with direct connection: 'mongodb://localhost:32775'
158
+ ```
159
+ 3 . Copy the connection string ` mongodb://localhost:32775 `
160
+ 4 . Open [ MongoDB Compass] ( https://www.mongodb.com/products/tools/compass )
161
+ 5 . Click ** Add new connection**
162
+ 6 . Paste the copied connection string in the URI field
163
+ 7 . Click Advanced Connection Options
164
+ 8 . Enable ** Direct Connection**
165
+ 9 . Click ** Save & Connect**
0 commit comments