-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add unit test to the subgraph
- Loading branch information
Showing
11 changed files
with
389 additions
and
37 deletions.
There are no files selected for viewing
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,64 @@ | ||
name: Subgraph | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
- release/* | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
- release/* | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
defaults: | ||
run: | ||
working-directory: subgraph | ||
|
||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
run_install: false | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: pnpm | ||
|
||
- name: Get pnpm store directory | ||
shell: bash | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ env.STORE_PATH }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Build the subgraph | ||
run: pnpm run build:goerli | ||
|
||
- name: Run the unit tests | ||
run: pnpm run test | ||
|
||
- name: Add test summary | ||
run: | | ||
echo "## Unit tests result" >> $GITHUB_STEP_SUMMARY | ||
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY |
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 |
---|---|---|
|
@@ -25,6 +25,9 @@ typechain-types | |
build | ||
generated | ||
subgraph.yaml | ||
.bin | ||
.latest.json | ||
.docker | ||
|
||
# Misc | ||
.DS_Store |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import { afterEach, assert, clearStore, describe, test } from "matchstick-as"; | ||
import { | ||
ModuleRegistered as ModuleRegisteredEvent, | ||
ModuleRegistered, | ||
} from "../generated/ModuleRegistry/ModuleRegistry"; | ||
import { Address, ethereum } from "@graphprotocol/graph-ts"; | ||
import { newTypedMockEvent } from "matchstick-as/assembly/defaults"; | ||
import { handleModuleRegistered } from "../src/module-registry"; | ||
|
||
describe("handleModuleRegistered()", () => { | ||
const moduleAddress = "f75be6f9418710fd516fa82afb3aad07e11a0f1b"; | ||
const moduleName = "module name"; | ||
const moduleDescription = "module description"; | ||
|
||
afterEach(() => { | ||
clearStore(); | ||
}); | ||
|
||
test("Should create a new Module entity", () => { | ||
assert.entityCount("Module", 0); | ||
|
||
const moduleRegisteredEvent = createModuleRegisteredEvent(moduleAddress, moduleName, moduleDescription); | ||
|
||
handleModuleRegistered(moduleRegisteredEvent); | ||
|
||
assert.entityCount("Module", 1); | ||
|
||
assert.fieldEquals("Module", "0x" + moduleAddress, "id", "0x" + moduleAddress); | ||
assert.fieldEquals("Module", "0x" + moduleAddress, "name", moduleName); | ||
assert.fieldEquals("Module", "0x" + moduleAddress, "description", moduleDescription); | ||
assert.fieldEquals("Module", "0x" + moduleAddress, "moduleAddress", "0x" + moduleAddress); | ||
}); | ||
|
||
test("Should increment the modules Counter", () => { | ||
assert.entityCount("Module", 0); | ||
|
||
const moduleAddress1 = "f75be6f9418710fd516fa82afb3aad07e11a0f1b"; | ||
const moduleAddress2 = "e75be6f9418710fd516fa82afb3aad07e11a0f1b"; | ||
|
||
const moduleRegisteredEvent1 = createModuleRegisteredEvent(moduleAddress1, moduleName, moduleDescription); | ||
|
||
handleModuleRegistered(moduleRegisteredEvent1); | ||
|
||
assert.entityCount("Module", 1); | ||
assert.fieldEquals("Counter", "counter", "modules", "1"); | ||
|
||
const moduleRegisteredEvent2 = createModuleRegisteredEvent(moduleAddress2, moduleName, moduleDescription); | ||
|
||
handleModuleRegistered(moduleRegisteredEvent2); | ||
|
||
assert.entityCount("Module", 2); | ||
assert.fieldEquals("Counter", "counter", "modules", "2"); | ||
}); | ||
}); | ||
|
||
function createModuleRegisteredEvent( | ||
moduleAddress: string, | ||
moduleName: string, | ||
moduleDescription: string, | ||
): ModuleRegistered { | ||
const moduleRegisteredEvent = newTypedMockEvent<ModuleRegisteredEvent>(); | ||
|
||
moduleRegisteredEvent.parameters.push(new ethereum.EventParam("name", ethereum.Value.fromString(moduleName))); | ||
moduleRegisteredEvent.parameters.push( | ||
new ethereum.EventParam("description", ethereum.Value.fromString(moduleDescription)), | ||
); | ||
moduleRegisteredEvent.parameters.push( | ||
new ethereum.EventParam("moduleAddress", ethereum.Value.fromAddress(Address.fromString(moduleAddress))), | ||
); | ||
|
||
return moduleRegisteredEvent; | ||
} |
Oops, something went wrong.