2020-09-24 06:52:10 +00:00
|
|
|
package eventstore
|
|
|
|
|
2020-09-30 08:00:05 +00:00
|
|
|
import (
|
2020-10-21 17:00:41 +00:00
|
|
|
"context"
|
|
|
|
"fmt"
|
2020-09-30 08:00:05 +00:00
|
|
|
"reflect"
|
2020-10-21 17:00:41 +00:00
|
|
|
"sync"
|
2020-09-30 08:00:05 +00:00
|
|
|
"testing"
|
|
|
|
|
2020-11-06 21:09:19 +00:00
|
|
|
"github.com/caos/zitadel/internal/api/authz"
|
2020-11-26 08:19:14 +00:00
|
|
|
"github.com/caos/zitadel/internal/api/service"
|
2020-09-30 08:00:05 +00:00
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/v2/repository"
|
|
|
|
)
|
|
|
|
|
2020-10-21 17:00:41 +00:00
|
|
|
type testAggregate struct {
|
2021-01-15 08:32:59 +00:00
|
|
|
id string
|
|
|
|
events []EventPusher
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *testAggregate) ID() string {
|
|
|
|
return a.id
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *testAggregate) Type() AggregateType {
|
|
|
|
return "test.aggregate"
|
|
|
|
}
|
|
|
|
|
2020-11-06 12:47:27 +00:00
|
|
|
func (a *testAggregate) Events() []EventPusher {
|
2020-10-21 17:00:41 +00:00
|
|
|
return a.events
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *testAggregate) ResourceOwner() string {
|
2021-02-18 13:48:27 +00:00
|
|
|
return "caos"
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *testAggregate) Version() Version {
|
|
|
|
return "v1"
|
|
|
|
}
|
|
|
|
|
2020-10-05 17:09:26 +00:00
|
|
|
// testEvent implements the Event interface
|
2020-09-30 08:00:05 +00:00
|
|
|
type testEvent struct {
|
2020-11-06 12:47:27 +00:00
|
|
|
BaseEvent
|
|
|
|
|
2020-09-30 08:00:05 +00:00
|
|
|
description string
|
|
|
|
shouldCheckPrevious bool
|
2020-10-05 20:02:59 +00:00
|
|
|
data func() interface{}
|
2020-09-30 08:00:05 +00:00
|
|
|
}
|
|
|
|
|
2021-02-18 13:48:27 +00:00
|
|
|
func newTestEvent(id, description string, data func() interface{}, checkPrevious bool) *testEvent {
|
2020-11-06 12:47:27 +00:00
|
|
|
return &testEvent{
|
|
|
|
description: description,
|
|
|
|
data: data,
|
|
|
|
shouldCheckPrevious: checkPrevious,
|
2020-11-06 16:25:07 +00:00
|
|
|
BaseEvent: *NewBaseEventForPush(
|
2020-11-26 08:19:14 +00:00
|
|
|
service.WithService(authz.NewMockContext("resourceOwner", "editorUser"), "editorService"),
|
2021-02-18 13:48:27 +00:00
|
|
|
NewAggregate(authz.NewMockContext("caos", "adlerhurst"), id, "test.aggregate", "v1"),
|
2020-11-06 16:25:07 +00:00
|
|
|
"test.event",
|
|
|
|
),
|
2020-11-06 12:47:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 17:09:26 +00:00
|
|
|
func (e *testEvent) Data() interface{} {
|
2020-10-05 20:02:59 +00:00
|
|
|
return e.data()
|
2020-10-05 17:09:26 +00:00
|
|
|
}
|
|
|
|
|
feat: cascade changes and removes (#1239)
* chore(site): dependabot deps (#1148)
* chore(deps): bump highlight.js from 10.4.1 to 10.5.0 in /site (#1143)
Bumps [highlight.js](https://github.com/highlightjs/highlight.js) from 10.4.1 to 10.5.0.
- [Release notes](https://github.com/highlightjs/highlight.js/releases)
- [Changelog](https://github.com/highlightjs/highlight.js/blob/master/CHANGES.md)
- [Commits](https://github.com/highlightjs/highlight.js/compare/10.4.1...10.5.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/plugin-transform-runtime in /site (#1144)
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) from 7.12.1 to 7.12.10.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.10/packages/babel-plugin-transform-runtime)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump sirv from 1.0.7 to 1.0.10 in /site (#1145)
Bumps [sirv](https://github.com/lukeed/sirv) from 1.0.7 to 1.0.10.
- [Release notes](https://github.com/lukeed/sirv/releases)
- [Commits](https://github.com/lukeed/sirv/compare/v1.0.7...v1.0.10)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump rollup from 2.34.0 to 2.35.1 in /site (#1142)
Bumps [rollup](https://github.com/rollup/rollup) from 2.34.0 to 2.35.1.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v2.34.0...v2.35.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @rollup/plugin-node-resolve in /site (#1141)
Bumps [@rollup/plugin-node-resolve](https://github.com/rollup/plugins) from 10.0.0 to 11.0.1.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/node-resolve-v10.0.0...commonjs-v11.0.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump marked from 1.2.5 to 1.2.7 in /site (#1140)
Bumps [marked](https://github.com/markedjs/marked) from 1.2.5 to 1.2.7.
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/release.config.js)
- [Commits](https://github.com/markedjs/marked/compare/v1.2.5...v1.2.7)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/core from 7.12.9 to 7.12.10 in /site (#1139)
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.12.9 to 7.12.10.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.10/packages/babel-core)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump rollup-plugin-svelte from 6.1.1 to 7.0.0 in /site (#1138)
Bumps [rollup-plugin-svelte](https://github.com/sveltejs/rollup-plugin-svelte) from 6.1.1 to 7.0.0.
- [Release notes](https://github.com/sveltejs/rollup-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/rollup-plugin-svelte/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/rollup-plugin-svelte/compare/v6.1.1...v7.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/preset-env from 7.12.1 to 7.12.11 in /site (#1137)
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.12.1 to 7.12.11.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.11/packages/babel-preset-env)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* downgrade svelte plugin
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(console): dependabot deps (#1147)
* chore(deps-dev): bump @types/node from 14.14.13 to 14.14.19 in /console (#1146)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.13 to 14.14.19.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump ts-protoc-gen from 0.13.0 to 0.14.0 in /console (#1129)
Bumps [ts-protoc-gen](https://github.com/improbable-eng/ts-protoc-gen) from 0.13.0 to 0.14.0.
- [Release notes](https://github.com/improbable-eng/ts-protoc-gen/releases)
- [Changelog](https://github.com/improbable-eng/ts-protoc-gen/blob/master/CHANGELOG.md)
- [Commits](https://github.com/improbable-eng/ts-protoc-gen/compare/0.13.0...0.14.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/language-service in /console (#1128)
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 11.0.4 to 11.0.5.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/11.0.5/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/cli from 11.0.4 to 11.0.5 in /console (#1127)
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 11.0.4 to 11.0.5.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v11.0.4...v11.0.5)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular-devkit/build-angular in /console (#1126)
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1100.4 to 0.1100.5.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* audit
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: e-mail templates (#1158)
* View definition added
* Get templates and texts from the database.
* Fill in texts in templates
* Fill in texts in templates
* Client API added
* Weekly backup
* Weekly backup
* Daily backup
* Weekly backup
* Tests added
* Corrections from merge branch
* Fixes from pull request review
* chore(console): dependencies (#1189)
* chore(deps-dev): bump @angular/language-service in /console (#1187)
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 11.0.5 to 11.0.9.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/11.0.9/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump google-proto-files from 2.3.0 to 2.4.0 in /console (#1186)
Bumps [google-proto-files](https://github.com/googleapis/nodejs-proto-files) from 2.3.0 to 2.4.0.
- [Release notes](https://github.com/googleapis/nodejs-proto-files/releases)
- [Changelog](https://github.com/googleapis/nodejs-proto-files/blob/master/CHANGELOG.md)
- [Commits](https://github.com/googleapis/nodejs-proto-files/compare/v2.3.0...v2.4.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @types/node from 14.14.19 to 14.14.21 in /console (#1185)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.19 to 14.14.21.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/cli from 11.0.5 to 11.0.7 in /console (#1184)
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 11.0.5 to 11.0.7.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v11.0.5...v11.0.7)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump karma from 5.2.3 to 6.0.0 in /console (#1183)
Bumps [karma](https://github.com/karma-runner/karma) from 5.2.3 to 6.0.0.
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](https://github.com/karma-runner/karma/compare/v5.2.3...v6.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular-devkit/build-angular in /console (#1182)
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1100.5 to 0.1100.7.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: change login to command side
* feat: change login to command side
* fix: fix push on user
* fix(console): trigger unauthenticated dialog only once (#1170)
* fix: trigger dialog once
* remove log
* typed trigger
* chore(console): dependencies (#1205)
* chore(deps-dev): bump stylelint from 13.8.0 to 13.9.0 in /console (#1204)
Bumps [stylelint](https://github.com/stylelint/stylelint) from 13.8.0 to 13.9.0.
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/stylelint/stylelint/compare/13.8.0...13.9.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/language-service in /console (#1203)
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 11.0.9 to 11.1.0.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/11.1.0/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump karma from 6.0.0 to 6.0.1 in /console (#1202)
Bumps [karma](https://github.com/karma-runner/karma) from 6.0.0 to 6.0.1.
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](https://github.com/karma-runner/karma/compare/v6.0.0...v6.0.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/cli from 11.0.7 to 11.1.1 in /console (#1201)
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 11.0.7 to 11.1.1.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v11.0.7...v11.1.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @types/jasmine from 3.6.2 to 3.6.3 in /console (#1200)
Bumps [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) from 3.6.2 to 3.6.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* chore(deps-dev): bump @types/node from 14.14.21 to 14.14.22 in /console (#1199)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.21 to 14.14.22.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular-devkit/build-angular in /console (#1198)
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1100.7 to 0.1101.1.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* chore(deps): bump angularx-qrcode from 10.0.11 to 11.0.0 in /console (#1197)
Bumps [angularx-qrcode](https://github.com/cordobo/angularx-qrcode) from 10.0.11 to 11.0.0.
- [Release notes](https://github.com/cordobo/angularx-qrcode/releases)
- [Commits](https://github.com/cordobo/angularx-qrcode/compare/10.0.11...11.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* fix pack lock
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* fix: handle sequence correctly in subscription (#1209)
* feat: user command side
* feat: sign out
* feat: command side login
* feat: command side login
* feat: fix register user
* feat: fix register user
* feat: fix web auth n events
* feat: add machine keys
* feat: send codes
* feat: move authrequest to domain
* feat: move authrequest to domain
* feat: webauthn working
* fix: correct master after merges again (#1230)
* chore(docs): correct `iss` claim of jwt profile (#1229)
* core(docs): correct `iss` claim of jwt profile
* fix: correct master after merges again (#1230)
* feat(login): new palette based styles (#1149)
* chore(deps-dev): bump rollup from 2.33.2 to 2.34.0 in /site (#1040)
Bumps [rollup](https://github.com/rollup/rollup) from 2.33.2 to 2.34.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v2.33.2...v2.34.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump svelte-i18n from 3.2.5 to 3.3.0 in /site (#1039)
Bumps [svelte-i18n](https://github.com/kaisermann/svelte-i18n) from 3.2.5 to 3.3.0.
- [Release notes](https://github.com/kaisermann/svelte-i18n/releases)
- [Changelog](https://github.com/kaisermann/svelte-i18n/blob/main/CHANGELOG.md)
- [Commits](https://github.com/kaisermann/svelte-i18n/compare/v3.2.5...v3.3.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @rollup/plugin-url from 5.0.1 to 6.0.0 in /site (#1038)
Bumps [@rollup/plugin-url](https://github.com/rollup/plugins) from 5.0.1 to 6.0.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/url-v5.0.1...url-v6.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump svelte from 3.29.7 to 3.30.1 in /site (#1037)
Bumps [svelte](https://github.com/sveltejs/svelte) from 3.29.7 to 3.30.1.
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/compare/v3.29.7...v3.30.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump marked from 1.2.4 to 1.2.5 in /site (#1036)
Bumps [marked](https://github.com/markedjs/marked) from 1.2.4 to 1.2.5.
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/release.config.js)
- [Commits](https://github.com/markedjs/marked/compare/v1.2.4...v1.2.5)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/core from 7.12.3 to 7.12.9 in /site (#1035)
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.12.3 to 7.12.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.9/packages/babel-core)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump rollup-plugin-svelte from 6.1.1 to 7.0.0 in /site (#1034)
Bumps [rollup-plugin-svelte](https://github.com/sveltejs/rollup-plugin-svelte) from 6.1.1 to 7.0.0.
- [Release notes](https://github.com/sveltejs/rollup-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/rollup-plugin-svelte/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/rollup-plugin-svelte/compare/v6.1.1...v7.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @rollup/plugin-commonjs in /site (#1033)
Bumps [@rollup/plugin-commonjs](https://github.com/rollup/plugins) from 15.1.0 to 17.0.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/commonjs-v15.1.0...commonjs-v17.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @rollup/plugin-node-resolve in /site (#1032)
Bumps [@rollup/plugin-node-resolve](https://github.com/rollup/plugins) from 10.0.0 to 11.0.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/node-resolve-v10.0.0...commonjs-v11.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/preset-env from 7.12.1 to 7.12.7 in /site (#1031)
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.12.1 to 7.12.7.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.7/packages/babel-preset-env)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* go
* bundle files, lgn-color, legacy theme
* remove old references
* light dark context, button styles, zitadel brand
* button theme, edit templates
* typography theme mixins
* input styles, container, extend light dark palette
* footer, palette, container
* container, label, assets, header
* action container, input, typography label, adapt button theme
* a and footer styles, adapt palette
* user log profile, resourcetempurl
* postinstall againnn
* wrochage
* rm local grpc
* button elevation, helper for components
* radio
* radio button mixins, bundle
* qr code styles, secret clipboard, icon pack
* stroked buttons, icon buttons, header action, typography
* fix password policy styles
* account selection
* account selection, lgn avatar
* mocks
* template fixes, animations scss
* checkbox, register temp
* checkbox appr
* fix checkbox, remove input interference
* select theme
* avatar script, user selection, password policy validation fix
* fix formfield state for register and change pwd
* footer, main style, qr code fix, mfa type fix, account sel, checkbox
* fotter tos, user select
* reverse buttons for intial submit action
* theme script, themed error messages, header img source
* content wrapper, i18n, mobile
* emptyline
* idp mixins, fix unstyled html
* register container
* register layout, list themes, policy theme, register org
* massive asset cleanup
* fix source path, add missing icon, fix complexity refs, prefix
* remove material icons, unused assets, fix icon font
* move icon pack
* avatar, contrast theme, error fix
* zitadel css map
* revert go mod
* fix mfa verify actions
* add idp styles
* fix google colors, idp styles
* fix: bugs
* fix register options, google
* fix script, mobile layout
* precompile font selection
* go mod tidy
* assets and cleanup
* input suffix, fix alignment, actions, add progress bar themes
* progress bar mixins, layout fixes
* remove test from loginname
* cleanup comments, scripts
* clear comments
* fix external back button
* fix mfa alignment
* fix actions layout, on dom change listener for suffix
* free tier change, success label
* fix: button font line-height
* remove tabindex
* remove comment
* remove comment
* Update internal/ui/login/handler/password_handler.go
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maximilian Peintner <csaq7175@uibk.ac.at>
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
* feat: external users
* chore(console): dependencies (#1233)
* chore(deps-dev): bump @angular-devkit/build-angular in /console (#1214)
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1101.1 to 0.1101.2.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump karma from 6.0.1 to 6.0.3 in /console (#1215)
Bumps [karma](https://github.com/karma-runner/karma) from 6.0.1 to 6.0.3.
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](https://github.com/karma-runner/karma/compare/v6.0.1...v6.0.3)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/language-service in /console (#1216)
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 11.1.0 to 11.1.1.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/11.1.1/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/cli from 11.1.1 to 11.1.2 in /console (#1217)
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 11.1.1 to 11.1.2.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v11.1.1...v11.1.2)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* lock
* site deps
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: external users login
* feat: notify users
* fix: tests
* feat: cascade remove user grants on project remove
* feat: cascade remove user grants on user remove
* feat: cascade remove roles
* feat: verified domain
* feat: cascade remove on idp config remove
* feat: cascade remove on system idp config remove
* fix: get email texts with default language (#1238)
* fix: login policy
* fix: login policy
* fix: cascade delete on remove idp from default policy
* fix(login): mail verification (#1237)
* fix: mail verification
* not block, stroked
* fix: issues of new login ui (#1241)
* fix: i18n of register
* fix: autofocus
* feat(operator): zitadel and database operator (#1208)
* feat(operator): add base for zitadel operator
* fix(operator): changed pipeline to release operator
* fix(operator): fmt with only one parameter
* fix(operator): corrected workflow job name
* fix(zitadelctl): added restore and backuplist command
* fix(zitadelctl): scale for restore
* chore(container): use scratch for deploy container
* fix(zitadelctl): limit image to scratch
* fix(migration): added migration scripts for newer version
* fix(operator): changed handling of kubeconfig in operator logic
* fix(operator): changed handling of secrets in operator logic
* fix(operator): use new version of zitadel
* fix(operator): added path for migrations
* fix(operator): delete doublets of migration scripts
* fix(operator): delete subpaths and integrate logic into init container
* fix(operator): corrected path in dockerfile for local migrations
* fix(operator): added migrations for cockroachdb-secure
* fix(operator): delete logic for ambassador module
* fix(operator): added read and write secret commands
* fix(operator): correct and align operator pipeline with zitadel pipeline
* fix(operator): correct yaml error in operator pipeline
* fix(operator): correct action name in operator pipeline
* fix(operator): correct case-sensitive filename in operator pipeline
* fix(operator): upload artifacts from buildx output
* fix(operator): corrected attribute spelling error
* fix(operator): combined jobs for operator binary and image
* fix(operator): added missing comma in operator pipeline
* fix(operator): added codecov for operator image
* fix(operator): added codecov for operator image
* fix(testing): code changes for testing and several unit-tests (#1009)
* fix(operator): usage of interface of kubernetes client for testing and several unit-tests
* fix(operator): several unit-tests
* fix(operator): several unit-tests
* fix(operator): changed order for the operator logic
* fix(operator): added version of zitadelctl from semantic release
* fix(operator): corrected function call with version of zitadelctl
* fix(operator): corrected function call with version of zitadelctl
* fix(operator): add check output to operator release pipeline
* fix(operator): set --short length everywhere to 12
* fix(operator): zitadel setup in job instead of exec with several unit tests
* fix(operator): fixes to combine newest zitadel and testing branch
* fix(operator): corrected path in Dockerfile
* fix(operator): fixed unit-test that was ignored during changes
* fix(operator): fixed unit-test that was ignored during changes
* fix(operator): corrected Dockerfile to correctly use env variable
* fix(operator): quickfix takeoff deployment
* fix(operator): corrected the clusterrolename in the applied artifacts
* fix: update secure migrations
* fix(operator): migrations (#1057)
* fix(operator): copied migrations from orbos repository
* fix(operator): newest migrations
* chore: use cockroach-secure
* fix: rename migration
* fix: remove insecure cockroach migrations
Co-authored-by: Stefan Benz <stefan@caos.ch>
* fix: finalize labels
* fix(operator): cli logging concurrent and fixe deployment of operator during restore
* fix: finalize labels and cli commands
* fix: restore
* chore: cockroachdb is always secure
* chore: use orbos consistent-labels latest commit
* test: make tests compatible with new labels
* fix: default to sa token for start command
* fix: use cockroachdb v12.02
* fix: don't delete flyway user
* test: fix migration test
* fix: use correct table qualifiers
* fix: don't alter sequence ownership
* fix: upgrade flyway
* fix: change ownership of all dbs and tables to admin user
* fix: change defaultdb user
* fix: treat clientid status codes >= 400 as errors
* fix: reconcile specified ZITADEL version, not binary version
* fix: add ca-certs
* fix: use latest orbos code
* fix: use orbos with fixed race condition
* fix: use latest ORBOS code
* fix: use latest ORBOS code
* fix: make migration and scaling around restoring work
* fix(operator): move zitadel operator
* chore(migrations): include owner change migration
* feat(db): add code base for database operator
* fix(db): change used image registry for database operator
* fix(db): generated mock
* fix(db): add accidentally ignored file
* fix(db): add cockroachdb backup image to pipeline
* fix(db): correct pipeline and image versions
* fix(db): correct version of used orbos
* fix(db): correct database import
* fix(db): go mod tidy
* fix(db): use new version for orbos
* fix(migrations): include migrations into zitadelctl binary (#1211)
* fix(db): use statik to integrate migrations into binary
* fix(migrations): corrections unit tests and pipeline for integrated migrations into zitadelctl binary
* fix(migrations): correction in dockerfile for pipeline build
* fix(migrations): correction in dockerfile for pipeline build
* fix(migrations): dockerfile changes for cache optimization
* fix(database): correct used part-of label in database operator
* fix(database): correct used selectable label in zitadel operator
* fix(operator): correct lables for user secrets in zitadel operator
* fix(operator): correct lables for service test in zitadel operator
* fix: don't enable database features for user operations (#1227)
* fix: don't enable database features for user operations
* fix: omit database feature for connection info adapter
* fix: use latest orbos version
* fix: update ORBOS (#1240)
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: Elio Bischof <eliobischof@gmail.com>
* Merge branch 'new-eventstore' into cascades
# Conflicts:
# internal/auth/repository/auth_request.go
# internal/auth/repository/eventsourcing/eventstore/auth_request.go
# internal/management/repository/eventsourcing/eventstore/user_grant.go
# internal/management/repository/user_grant.go
# internal/ui/login/handler/external_login_handler.go
# internal/ui/login/handler/external_register_handler.go
# internal/ui/login/handler/init_password_handler.go
# internal/ui/login/handler/register_handler.go
# internal/user/repository/view/model/notify_user.go
# internal/v2/command/org_policy_login.go
# internal/v2/command/project.go
# internal/v2/command/user.go
# internal/v2/command/user_human.go
# internal/v2/command/user_human_externalidp.go
# internal/v2/command/user_human_init.go
# internal/v2/command/user_human_password.go
# internal/v2/command/user_human_webauthn.go
# internal/v2/domain/next_step.go
# internal/v2/domain/policy_login.go
# internal/v2/domain/request.go
* Merge branch 'new-eventstore' into cascades
# Conflicts:
# internal/auth/repository/auth_request.go
# internal/auth/repository/eventsourcing/eventstore/auth_request.go
# internal/management/repository/eventsourcing/eventstore/user_grant.go
# internal/management/repository/user_grant.go
# internal/ui/login/handler/external_login_handler.go
# internal/ui/login/handler/external_register_handler.go
# internal/ui/login/handler/init_password_handler.go
# internal/ui/login/handler/register_handler.go
# internal/user/repository/view/model/notify_user.go
# internal/v2/command/org_policy_login.go
# internal/v2/command/project.go
# internal/v2/command/user.go
# internal/v2/command/user_human.go
# internal/v2/command/user_human_externalidp.go
# internal/v2/command/user_human_init.go
# internal/v2/command/user_human_password.go
# internal/v2/command/user_human_webauthn.go
# internal/v2/domain/next_step.go
# internal/v2/domain/policy_login.go
# internal/v2/domain/request.go
* chore: add local migrate_local.go again (#1261)
* fix: logging on cascade removes
* fix: migrations
* fix: tests
* fix: tests
* chore: pass params in migrate_local.go
* migrations
* fix query
* fix tests
* fix tests
Co-authored-by: Max Peintner <max@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Waeger <49439088+michaelulrichwaeger@users.noreply.github.com>
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
Co-authored-by: Maximilian Peintner <csaq7175@uibk.ac.at>
Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: Elio Bischof <eliobischof@gmail.com>
2021-02-09 09:14:40 +00:00
|
|
|
func (e *testEvent) UniqueConstraints() []*EventUniqueConstraint {
|
2021-01-21 09:49:38 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-06 16:25:07 +00:00
|
|
|
func testFilterMapper(event *repository.Event) (EventReader, error) {
|
2020-11-06 12:47:27 +00:00
|
|
|
if event == nil {
|
2021-02-18 13:48:27 +00:00
|
|
|
return newTestEvent("testID", "hodor", nil, false), nil
|
2020-11-06 12:47:27 +00:00
|
|
|
}
|
|
|
|
return &testEvent{description: "hodor", BaseEvent: *BaseEventFromRepo(event)}, nil
|
2020-09-30 08:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_eventstore_RegisterFilterEventMapper(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventMapper map[EventType]eventTypeInterceptors
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
eventType EventType
|
2020-11-06 16:25:07 +00:00
|
|
|
mapper func(*repository.Event) (EventReader, error)
|
2020-09-30 08:00:05 +00:00
|
|
|
}
|
|
|
|
type res struct {
|
2020-11-06 21:09:19 +00:00
|
|
|
event EventReader
|
2020-10-27 14:42:18 +00:00
|
|
|
mapperCount int
|
2020-09-30 08:00:05 +00:00
|
|
|
}
|
2020-09-24 06:52:10 +00:00
|
|
|
|
|
|
|
tests := []struct {
|
2020-09-30 08:00:05 +00:00
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "no event type",
|
|
|
|
args: args{
|
|
|
|
eventType: "",
|
|
|
|
mapper: testFilterMapper,
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
eventMapper: map[EventType]eventTypeInterceptors{},
|
|
|
|
},
|
|
|
|
res: res{
|
2020-10-27 14:42:18 +00:00
|
|
|
mapperCount: 0,
|
2020-09-30 08:00:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no event mapper",
|
|
|
|
args: args{
|
|
|
|
eventType: "event.type",
|
|
|
|
mapper: nil,
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
eventMapper: map[EventType]eventTypeInterceptors{},
|
|
|
|
},
|
|
|
|
res: res{
|
2020-10-27 14:42:18 +00:00
|
|
|
mapperCount: 0,
|
2020-09-30 08:00:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "new interceptor",
|
|
|
|
fields: fields{
|
|
|
|
eventMapper: map[EventType]eventTypeInterceptors{},
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
eventType: "event.type",
|
|
|
|
mapper: testFilterMapper,
|
|
|
|
},
|
|
|
|
res: res{
|
2021-02-18 13:48:27 +00:00
|
|
|
event: newTestEvent("testID", "hodor", nil, false),
|
2020-10-27 14:42:18 +00:00
|
|
|
mapperCount: 1,
|
2020-09-30 08:00:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "existing interceptor new filter mapper",
|
|
|
|
fields: fields{
|
|
|
|
eventMapper: map[EventType]eventTypeInterceptors{
|
|
|
|
"event.type": {},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
eventType: "new.event",
|
|
|
|
mapper: testFilterMapper,
|
|
|
|
},
|
|
|
|
res: res{
|
2021-02-18 13:48:27 +00:00
|
|
|
event: newTestEvent("testID", "hodor", nil, false),
|
2020-10-27 14:42:18 +00:00
|
|
|
mapperCount: 2,
|
2020-09-30 08:00:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "existing interceptor existing filter mapper",
|
|
|
|
fields: fields{
|
|
|
|
eventMapper: map[EventType]eventTypeInterceptors{
|
|
|
|
"event.type": {
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: func(*repository.Event) (EventReader, error) {
|
2020-09-30 08:00:05 +00:00
|
|
|
return nil, errors.ThrowUnimplemented(nil, "V2-1qPvn", "unimplemented")
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
eventType: "new.event",
|
|
|
|
mapper: testFilterMapper,
|
|
|
|
},
|
|
|
|
res: res{
|
2021-02-18 13:48:27 +00:00
|
|
|
event: newTestEvent("testID", "hodor", nil, false),
|
2020-10-27 14:42:18 +00:00
|
|
|
mapperCount: 2,
|
2020-09-30 08:00:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2020-09-24 06:52:10 +00:00
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2020-09-30 08:00:05 +00:00
|
|
|
es := &Eventstore{
|
2020-10-27 15:03:17 +00:00
|
|
|
eventInterceptors: tt.fields.eventMapper,
|
2020-09-30 08:00:05 +00:00
|
|
|
}
|
2020-10-27 14:42:18 +00:00
|
|
|
es = es.RegisterFilterEventMapper(tt.args.eventType, tt.args.mapper)
|
2020-10-27 15:03:17 +00:00
|
|
|
if len(es.eventInterceptors) != tt.res.mapperCount {
|
|
|
|
t.Errorf("unexpected mapper count: want %d, got %d", tt.res.mapperCount, len(es.eventInterceptors))
|
2020-09-30 08:00:05 +00:00
|
|
|
return
|
|
|
|
}
|
2020-10-27 14:42:18 +00:00
|
|
|
|
|
|
|
if tt.res.mapperCount == 0 {
|
2020-09-30 08:00:05 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-27 15:03:17 +00:00
|
|
|
mapper := es.eventInterceptors[tt.args.eventType]
|
2020-10-23 14:16:46 +00:00
|
|
|
event, err := mapper.eventMapper(nil)
|
2020-09-30 08:00:05 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(tt.res.event, event) {
|
2020-11-06 12:47:27 +00:00
|
|
|
t.Errorf("events should be deep equal. \ngot %#v\nwant %#v", event, tt.res.event)
|
2020-09-30 08:00:05 +00:00
|
|
|
}
|
2020-09-24 06:52:10 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-10-05 20:02:59 +00:00
|
|
|
|
|
|
|
func Test_eventData(t *testing.T) {
|
|
|
|
type args struct {
|
2020-11-06 12:47:27 +00:00
|
|
|
event EventPusher
|
2020-10-05 20:02:59 +00:00
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
jsonText []byte
|
|
|
|
wantErr bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "data as json bytes",
|
|
|
|
args: args{
|
2020-11-06 12:47:27 +00:00
|
|
|
event: newTestEvent(
|
2021-02-18 13:48:27 +00:00
|
|
|
"id",
|
2020-11-06 12:47:27 +00:00
|
|
|
"hodor",
|
|
|
|
func() interface{} {
|
2020-10-05 20:02:59 +00:00
|
|
|
return []byte(`{"piff":"paff"}`)
|
|
|
|
},
|
2020-11-06 12:47:27 +00:00
|
|
|
false),
|
2020-10-05 20:02:59 +00:00
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
jsonText: []byte(`{"piff":"paff"}`),
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "data as invalid json bytes",
|
|
|
|
args: args{
|
2020-11-06 12:47:27 +00:00
|
|
|
event: newTestEvent(
|
2021-02-18 13:48:27 +00:00
|
|
|
"id",
|
2020-11-06 12:47:27 +00:00
|
|
|
"hodor",
|
|
|
|
func() interface{} {
|
2020-10-05 20:02:59 +00:00
|
|
|
return []byte(`{"piffpaff"}`)
|
|
|
|
},
|
2020-11-06 12:47:27 +00:00
|
|
|
false),
|
2020-10-05 20:02:59 +00:00
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
jsonText: []byte(nil),
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "data as struct",
|
|
|
|
args: args{
|
2020-11-06 12:47:27 +00:00
|
|
|
event: newTestEvent(
|
2021-02-18 13:48:27 +00:00
|
|
|
"id",
|
2020-11-06 12:47:27 +00:00
|
|
|
"hodor",
|
|
|
|
func() interface{} {
|
2020-10-05 20:02:59 +00:00
|
|
|
return struct {
|
|
|
|
Piff string `json:"piff"`
|
|
|
|
}{Piff: "paff"}
|
|
|
|
},
|
2020-11-06 12:47:27 +00:00
|
|
|
false),
|
2020-10-05 20:02:59 +00:00
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
jsonText: []byte(`{"piff":"paff"}`),
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "data as ptr to struct",
|
|
|
|
args: args{
|
2020-11-06 12:47:27 +00:00
|
|
|
event: newTestEvent(
|
2021-02-18 13:48:27 +00:00
|
|
|
"id",
|
2020-11-06 12:47:27 +00:00
|
|
|
"hodor",
|
|
|
|
func() interface{} {
|
2020-10-05 20:02:59 +00:00
|
|
|
return &struct {
|
|
|
|
Piff string `json:"piff"`
|
|
|
|
}{Piff: "paff"}
|
|
|
|
},
|
2020-11-06 12:47:27 +00:00
|
|
|
false),
|
2020-10-05 20:02:59 +00:00
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
jsonText: []byte(`{"piff":"paff"}`),
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no data",
|
|
|
|
args: args{
|
2020-11-06 12:47:27 +00:00
|
|
|
event: newTestEvent(
|
2021-02-18 13:48:27 +00:00
|
|
|
"id",
|
2020-11-06 12:47:27 +00:00
|
|
|
"hodor",
|
|
|
|
func() interface{} {
|
2020-10-05 20:02:59 +00:00
|
|
|
return nil
|
|
|
|
},
|
2020-11-06 12:47:27 +00:00
|
|
|
false),
|
2020-10-05 20:02:59 +00:00
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
jsonText: []byte(nil),
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid because primitive",
|
|
|
|
args: args{
|
2020-11-06 12:47:27 +00:00
|
|
|
event: newTestEvent(
|
2021-02-18 13:48:27 +00:00
|
|
|
"id",
|
2020-11-06 12:47:27 +00:00
|
|
|
"hodor",
|
|
|
|
func() interface{} {
|
2020-10-05 20:02:59 +00:00
|
|
|
return ""
|
|
|
|
},
|
2020-11-06 12:47:27 +00:00
|
|
|
false),
|
2020-10-05 20:02:59 +00:00
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
jsonText: []byte(nil),
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid because pointer to primitive",
|
|
|
|
args: args{
|
2020-11-06 12:47:27 +00:00
|
|
|
event: newTestEvent(
|
2021-02-18 13:48:27 +00:00
|
|
|
"id",
|
2020-11-06 12:47:27 +00:00
|
|
|
"hodor",
|
|
|
|
func() interface{} {
|
2020-10-05 20:02:59 +00:00
|
|
|
var s string
|
|
|
|
return &s
|
|
|
|
},
|
2020-11-06 12:47:27 +00:00
|
|
|
false),
|
2020-10-05 20:02:59 +00:00
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
jsonText: []byte(nil),
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
2020-10-14 10:43:31 +00:00
|
|
|
{
|
|
|
|
name: "invalid because invalid struct for json",
|
|
|
|
args: args{
|
2020-11-06 12:47:27 +00:00
|
|
|
event: newTestEvent(
|
2021-02-18 13:48:27 +00:00
|
|
|
"id",
|
2020-11-06 12:47:27 +00:00
|
|
|
"hodor",
|
|
|
|
func() interface{} {
|
2020-10-14 10:43:31 +00:00
|
|
|
return struct {
|
|
|
|
Field chan string `json:"field"`
|
|
|
|
}{}
|
|
|
|
},
|
2020-11-06 12:47:27 +00:00
|
|
|
false),
|
2020-10-14 10:43:31 +00:00
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
jsonText: []byte(nil),
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
2020-10-05 20:02:59 +00:00
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
got, err := eventData(tt.args.event)
|
|
|
|
if (err != nil) != tt.res.wantErr {
|
|
|
|
t.Errorf("eventData() error = %v, wantErr %v", err, tt.res.wantErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(got, tt.res.jsonText) {
|
|
|
|
t.Errorf("eventData() = %v, want %v", string(got), string(tt.res.jsonText))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-10-21 17:00:41 +00:00
|
|
|
|
|
|
|
func TestEventstore_aggregatesToEvents(t *testing.T) {
|
|
|
|
type args struct {
|
2021-02-18 13:48:27 +00:00
|
|
|
aggregates []Aggregate
|
|
|
|
events []EventPusher
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
wantErr bool
|
|
|
|
events []*repository.Event
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "one aggregate one event",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "one aggregate multiple events",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
false),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
2021-01-15 08:32:59 +00:00
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-01-15 08:32:59 +00:00
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-01-15 08:32:59 +00:00
|
|
|
},
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid data",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return `{"data":""`
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "multiple aggregates",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
|
|
|
newTestEvent(
|
|
|
|
"2",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
true),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
events: combineEventLists(
|
2021-01-15 08:32:59 +00:00
|
|
|
[]*repository.Event{
|
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-01-15 08:32:59 +00:00
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-01-15 08:32:59 +00:00
|
|
|
},
|
2020-10-21 17:00:41 +00:00
|
|
|
[]*repository.Event{
|
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "2",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2021-02-18 13:48:27 +00:00
|
|
|
events, _, err := eventsToRepository(tt.args.events)
|
2020-10-21 17:00:41 +00:00
|
|
|
if (err != nil) != tt.res.wantErr {
|
|
|
|
t.Errorf("Eventstore.aggregatesToEvents() error = %v, wantErr %v", err, tt.res.wantErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(tt.res.events) != len(events) {
|
|
|
|
t.Errorf("length of events unequal want: %d got %d", len(tt.res.events), len(events))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < len(tt.res.events); i++ {
|
|
|
|
compareEvents(t, tt.res.events[i], events[i])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type testRepo struct {
|
|
|
|
events []*repository.Event
|
|
|
|
sequence uint64
|
|
|
|
err error
|
|
|
|
t *testing.T
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *testRepo) Health(ctx context.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-21 09:49:38 +00:00
|
|
|
func (repo *testRepo) Push(ctx context.Context, events []*repository.Event, uniqueConstraints ...*repository.UniqueConstraint) error {
|
2020-10-21 17:00:41 +00:00
|
|
|
if repo.err != nil {
|
|
|
|
return repo.err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(repo.events) != len(events) {
|
|
|
|
repo.t.Errorf("length of events unequal want: %d got %d", len(repo.events), len(events))
|
|
|
|
return fmt.Errorf("")
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < len(repo.events); i++ {
|
|
|
|
compareEvents(repo.t, repo.events[i], events[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-21 17:29:22 +00:00
|
|
|
func (repo *testRepo) Filter(ctx context.Context, searchQuery *repository.SearchQuery) ([]*repository.Event, error) {
|
2020-10-21 17:00:41 +00:00
|
|
|
if repo.err != nil {
|
2020-10-21 17:29:22 +00:00
|
|
|
return nil, repo.err
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
return repo.events, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *testRepo) LatestSequence(ctx context.Context, queryFactory *repository.SearchQuery) (uint64, error) {
|
|
|
|
if repo.err != nil {
|
|
|
|
return 0, repo.err
|
|
|
|
}
|
|
|
|
return repo.sequence, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEventstore_Push(t *testing.T) {
|
|
|
|
type args struct {
|
2021-02-18 13:48:27 +00:00
|
|
|
events []EventPusher
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
type fields struct {
|
|
|
|
repo *testRepo
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper map[EventType]func(*repository.Event) (EventReader, error)
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
wantErr bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
fields fields
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "one aggregate one event",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
t: t,
|
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:00:41 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "one aggregate multiple events",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
false),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
t: t,
|
2021-01-15 08:32:59 +00:00
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-01-15 08:32:59 +00:00
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-01-15 08:32:59 +00:00
|
|
|
},
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:00:41 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "multiple aggregates",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
|
|
|
newTestEvent(
|
|
|
|
"2",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
true),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
t: t,
|
|
|
|
events: combineEventLists(
|
2021-01-15 08:32:59 +00:00
|
|
|
[]*repository.Event{
|
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-01-15 08:32:59 +00:00
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "1",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-01-15 08:32:59 +00:00
|
|
|
},
|
2020-10-21 17:00:41 +00:00
|
|
|
[]*repository.Event{
|
|
|
|
{
|
2020-12-14 16:24:01 +00:00
|
|
|
AggregateID: "2",
|
|
|
|
AggregateType: "test.aggregate",
|
|
|
|
Data: []byte(nil),
|
|
|
|
EditorService: "editorService",
|
|
|
|
EditorUser: "editorUser",
|
2021-02-18 13:48:27 +00:00
|
|
|
ResourceOwner: "caos",
|
2020-12-14 16:24:01 +00:00
|
|
|
Type: "test.event",
|
|
|
|
Version: "v1",
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:00:41 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "push fails",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return nil
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
t: t,
|
|
|
|
err: errors.ThrowInternal(nil, "V2-qaa4S", "test err"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "aggreagtes to events mapping fails",
|
|
|
|
args: args{
|
2021-02-18 13:48:27 +00:00
|
|
|
events: []EventPusher{
|
|
|
|
newTestEvent(
|
|
|
|
"1",
|
|
|
|
"",
|
|
|
|
func() interface{} {
|
|
|
|
return `{"data":""`
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
2021-02-18 13:48:27 +00:00
|
|
|
false),
|
2020-10-21 17:00:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
t: t,
|
|
|
|
err: errors.ThrowInternal(nil, "V2-qaa4S", "test err"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
es := &Eventstore{
|
2020-10-27 15:03:17 +00:00
|
|
|
repo: tt.fields.repo,
|
|
|
|
interceptorMutex: sync.Mutex{},
|
|
|
|
eventInterceptors: map[EventType]eventTypeInterceptors{},
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
for eventType, mapper := range tt.fields.eventMapper {
|
2020-10-27 14:42:18 +00:00
|
|
|
es = es.RegisterFilterEventMapper(eventType, mapper)
|
|
|
|
}
|
2020-10-27 15:03:17 +00:00
|
|
|
if len(es.eventInterceptors) != len(tt.fields.eventMapper) {
|
|
|
|
t.Errorf("register event mapper failed expected mapper amount: %d, got: %d", len(tt.fields.eventMapper), len(es.eventInterceptors))
|
2020-10-27 14:42:18 +00:00
|
|
|
t.FailNow()
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
|
2021-02-18 13:48:27 +00:00
|
|
|
_, err := es.PushEvents(context.Background(), tt.args.events...)
|
2020-10-21 17:00:41 +00:00
|
|
|
if (err != nil) != tt.res.wantErr {
|
|
|
|
t.Errorf("Eventstore.aggregatesToEvents() error = %v, wantErr %v", err, tt.res.wantErr)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-21 17:29:22 +00:00
|
|
|
func TestEventstore_FilterEvents(t *testing.T) {
|
|
|
|
type args struct {
|
2020-12-01 13:44:19 +00:00
|
|
|
query *SearchQueryBuilder
|
2020-10-21 17:29:22 +00:00
|
|
|
}
|
|
|
|
type fields struct {
|
|
|
|
repo *testRepo
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper map[EventType]func(*repository.Event) (EventReader, error)
|
2020-10-21 17:29:22 +00:00
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
wantErr bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
fields fields
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "invalid factory",
|
|
|
|
args: args{
|
|
|
|
query: nil,
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no events",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:29:22 +00:00
|
|
|
aggregateTypes: []AggregateType{"no.aggregates"},
|
|
|
|
columns: repository.ColumnsEvent,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
events: []*repository.Event{},
|
|
|
|
t: t,
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:29:22 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "repo error",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:29:22 +00:00
|
|
|
aggregateTypes: []AggregateType{"no.aggregates"},
|
|
|
|
columns: repository.ColumnsEvent,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
t: t,
|
|
|
|
err: errors.ThrowInternal(nil, "V2-RfkBa", "test err"),
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:29:22 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "found events",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:29:22 +00:00
|
|
|
aggregateTypes: []AggregateType{"test.aggregate"},
|
|
|
|
columns: repository.ColumnsEvent,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
|
|
|
AggregateID: "test.aggregate",
|
|
|
|
Type: "test.event",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
t: t,
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:29:22 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
es := &Eventstore{
|
2020-10-27 15:03:17 +00:00
|
|
|
repo: tt.fields.repo,
|
|
|
|
interceptorMutex: sync.Mutex{},
|
|
|
|
eventInterceptors: map[EventType]eventTypeInterceptors{},
|
2020-10-21 17:29:22 +00:00
|
|
|
}
|
2020-10-27 14:42:18 +00:00
|
|
|
|
2020-10-21 17:29:22 +00:00
|
|
|
for eventType, mapper := range tt.fields.eventMapper {
|
2020-10-27 14:42:18 +00:00
|
|
|
es = es.RegisterFilterEventMapper(eventType, mapper)
|
|
|
|
}
|
2020-10-27 15:03:17 +00:00
|
|
|
if len(es.eventInterceptors) != len(tt.fields.eventMapper) {
|
|
|
|
t.Errorf("register event mapper failed expected mapper amount: %d, got: %d", len(tt.fields.eventMapper), len(es.eventInterceptors))
|
2020-10-27 14:42:18 +00:00
|
|
|
t.FailNow()
|
2020-10-21 17:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err := es.FilterEvents(context.Background(), tt.args.query)
|
|
|
|
if (err != nil) != tt.res.wantErr {
|
|
|
|
t.Errorf("Eventstore.aggregatesToEvents() error = %v, wantErr %v", err, tt.res.wantErr)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEventstore_LatestSequence(t *testing.T) {
|
|
|
|
type args struct {
|
2020-12-01 13:44:19 +00:00
|
|
|
query *SearchQueryBuilder
|
2020-10-21 17:29:22 +00:00
|
|
|
}
|
|
|
|
type fields struct {
|
|
|
|
repo *testRepo
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
wantErr bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
fields fields
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "invalid factory",
|
|
|
|
args: args{
|
|
|
|
query: nil,
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no events",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:29:22 +00:00
|
|
|
aggregateTypes: []AggregateType{"no.aggregates"},
|
|
|
|
columns: repository.ColumnsMaxSequence,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
events: []*repository.Event{},
|
|
|
|
t: t,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "repo error",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:29:22 +00:00
|
|
|
aggregateTypes: []AggregateType{"no.aggregates"},
|
|
|
|
columns: repository.ColumnsMaxSequence,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
t: t,
|
|
|
|
err: errors.ThrowInternal(nil, "V2-RfkBa", "test err"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "found events",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:29:22 +00:00
|
|
|
aggregateTypes: []AggregateType{"test.aggregate"},
|
|
|
|
columns: repository.ColumnsMaxSequence,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
sequence: 50,
|
|
|
|
t: t,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
es := &Eventstore{
|
|
|
|
repo: tt.fields.repo,
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := es.LatestSequence(context.Background(), tt.args.query)
|
|
|
|
if (err != nil) != tt.res.wantErr {
|
|
|
|
t.Errorf("Eventstore.aggregatesToEvents() error = %v, wantErr %v", err, tt.res.wantErr)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-21 17:45:23 +00:00
|
|
|
type testReducer struct {
|
|
|
|
t *testing.T
|
2020-11-06 16:25:07 +00:00
|
|
|
events []EventReader
|
2020-10-21 17:45:23 +00:00
|
|
|
expectedLength int
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *testReducer) Reduce() error {
|
|
|
|
r.t.Helper()
|
|
|
|
if len(r.events) != r.expectedLength {
|
|
|
|
r.t.Errorf("wrong amount of append events wanted: %d, got %d", r.expectedLength, len(r.events))
|
|
|
|
}
|
|
|
|
if r.err != nil {
|
|
|
|
return r.err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-26 08:19:14 +00:00
|
|
|
func (r *testReducer) AppendEvents(e ...EventReader) {
|
2020-10-21 17:45:23 +00:00
|
|
|
r.events = append(r.events, e...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEventstore_FilterToReducer(t *testing.T) {
|
|
|
|
type args struct {
|
2020-12-01 13:44:19 +00:00
|
|
|
query *SearchQueryBuilder
|
2020-10-21 17:45:23 +00:00
|
|
|
readModel reducer
|
|
|
|
}
|
|
|
|
type fields struct {
|
|
|
|
repo *testRepo
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper map[EventType]func(*repository.Event) (EventReader, error)
|
2020-10-21 17:45:23 +00:00
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
wantErr bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
fields fields
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "invalid factory",
|
|
|
|
args: args{
|
|
|
|
query: nil,
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no events",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:45:23 +00:00
|
|
|
aggregateTypes: []AggregateType{"no.aggregates"},
|
|
|
|
columns: repository.ColumnsEvent,
|
|
|
|
},
|
|
|
|
readModel: &testReducer{
|
|
|
|
t: t,
|
|
|
|
expectedLength: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
events: []*repository.Event{},
|
|
|
|
t: t,
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:45:23 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "repo error",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:45:23 +00:00
|
|
|
aggregateTypes: []AggregateType{"no.aggregates"},
|
|
|
|
columns: repository.ColumnsEvent,
|
|
|
|
},
|
|
|
|
readModel: &testReducer{
|
|
|
|
t: t,
|
|
|
|
expectedLength: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
t: t,
|
|
|
|
err: errors.ThrowInternal(nil, "V2-RfkBa", "test err"),
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:45:23 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "found events",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: NewSearchQueryBuilder(repository.ColumnsEvent, "test.aggregate"),
|
2020-10-21 17:45:23 +00:00
|
|
|
readModel: &testReducer{
|
|
|
|
t: t,
|
|
|
|
expectedLength: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
|
|
|
AggregateID: "test.aggregate",
|
|
|
|
Type: "test.event",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
t: t,
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:45:23 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "append in reducer fails",
|
|
|
|
args: args{
|
2020-12-01 13:44:19 +00:00
|
|
|
query: &SearchQueryBuilder{
|
2020-10-21 17:45:23 +00:00
|
|
|
aggregateTypes: []AggregateType{"test.aggregate"},
|
|
|
|
columns: repository.ColumnsEvent,
|
|
|
|
},
|
|
|
|
readModel: &testReducer{
|
2020-11-26 08:19:14 +00:00
|
|
|
t: t,
|
|
|
|
err: errors.ThrowInvalidArgument(nil, "V2-W06TG", "test err"),
|
|
|
|
expectedLength: 1,
|
2020-10-21 17:45:23 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
|
|
|
repo: &testRepo{
|
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
|
|
|
AggregateID: "test.aggregate",
|
|
|
|
Type: "test.event",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
t: t,
|
|
|
|
},
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(e *repository.Event) (EventReader, error) {
|
2020-10-21 17:45:23 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
es := &Eventstore{
|
2020-10-27 15:03:17 +00:00
|
|
|
repo: tt.fields.repo,
|
|
|
|
interceptorMutex: sync.Mutex{},
|
|
|
|
eventInterceptors: map[EventType]eventTypeInterceptors{},
|
2020-10-21 17:45:23 +00:00
|
|
|
}
|
|
|
|
for eventType, mapper := range tt.fields.eventMapper {
|
2020-10-27 14:42:18 +00:00
|
|
|
es = es.RegisterFilterEventMapper(eventType, mapper)
|
|
|
|
}
|
2020-10-27 15:03:17 +00:00
|
|
|
if len(es.eventInterceptors) != len(tt.fields.eventMapper) {
|
|
|
|
t.Errorf("register event mapper failed expected mapper amount: %d, got: %d", len(tt.fields.eventMapper), len(es.eventInterceptors))
|
2020-10-27 14:42:18 +00:00
|
|
|
t.FailNow()
|
2020-10-21 17:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err := es.FilterToReducer(context.Background(), tt.args.query, tt.args.readModel)
|
|
|
|
if (err != nil) != tt.res.wantErr {
|
|
|
|
t.Errorf("Eventstore.aggregatesToEvents() error = %v, wantErr %v", err, tt.res.wantErr)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-21 17:00:41 +00:00
|
|
|
func combineEventLists(lists ...[]*repository.Event) []*repository.Event {
|
|
|
|
events := []*repository.Event{}
|
|
|
|
for _, list := range lists {
|
|
|
|
events = append(events, list...)
|
|
|
|
}
|
|
|
|
return events
|
|
|
|
}
|
|
|
|
|
|
|
|
func linkEvents(events ...*repository.Event) []*repository.Event {
|
|
|
|
for i := 1; i < len(events); i++ {
|
2021-01-15 08:32:59 +00:00
|
|
|
// events[i].PreviousEvent = events[i-1]
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
return events
|
|
|
|
}
|
|
|
|
|
|
|
|
func compareEvents(t *testing.T, want, got *repository.Event) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
if want.AggregateID != got.AggregateID {
|
2021-02-18 13:48:27 +00:00
|
|
|
t.Errorf("wrong aggregateID got %q want %q", got.AggregateID, want.AggregateID)
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
if want.AggregateType != got.AggregateType {
|
2021-02-18 13:48:27 +00:00
|
|
|
t.Errorf("wrong aggregateType got %q want %q", got.AggregateType, want.AggregateType)
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(want.Data, got.Data) {
|
2021-02-18 13:48:27 +00:00
|
|
|
t.Errorf("wrong data got %s want %s", string(got.Data), string(want.Data))
|
2020-10-21 17:00:41 +00:00
|
|
|
}
|
|
|
|
if want.EditorService != got.EditorService {
|
|
|
|
t.Errorf("wrong editor service got %q want %q", got.EditorService, want.EditorService)
|
|
|
|
}
|
|
|
|
if want.EditorUser != got.EditorUser {
|
|
|
|
t.Errorf("wrong editor user got %q want %q", got.EditorUser, want.EditorUser)
|
|
|
|
}
|
|
|
|
if want.ResourceOwner != got.ResourceOwner {
|
|
|
|
t.Errorf("wrong resource owner got %q want %q", got.ResourceOwner, want.ResourceOwner)
|
|
|
|
}
|
|
|
|
if want.Type != got.Type {
|
|
|
|
t.Errorf("wrong event type got %q want %q", got.Type, want.Type)
|
|
|
|
}
|
|
|
|
if want.Version != got.Version {
|
|
|
|
t.Errorf("wrong version got %q want %q", got.Version, want.Version)
|
|
|
|
}
|
|
|
|
if want.PreviousSequence != got.PreviousSequence {
|
|
|
|
t.Errorf("wrong previous sequence got %d want %d", got.PreviousSequence, want.PreviousSequence)
|
|
|
|
}
|
|
|
|
}
|
2020-10-21 17:29:22 +00:00
|
|
|
|
|
|
|
func TestEventstore_mapEvents(t *testing.T) {
|
|
|
|
type fields struct {
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper map[EventType]func(*repository.Event) (EventReader, error)
|
2020-10-21 17:29:22 +00:00
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
events []*repository.Event
|
|
|
|
}
|
|
|
|
type res struct {
|
2020-11-06 16:25:07 +00:00
|
|
|
events []EventReader
|
2020-10-21 17:29:22 +00:00
|
|
|
wantErr bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
feat: cascade changes and removes (#1239)
* chore(site): dependabot deps (#1148)
* chore(deps): bump highlight.js from 10.4.1 to 10.5.0 in /site (#1143)
Bumps [highlight.js](https://github.com/highlightjs/highlight.js) from 10.4.1 to 10.5.0.
- [Release notes](https://github.com/highlightjs/highlight.js/releases)
- [Changelog](https://github.com/highlightjs/highlight.js/blob/master/CHANGES.md)
- [Commits](https://github.com/highlightjs/highlight.js/compare/10.4.1...10.5.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/plugin-transform-runtime in /site (#1144)
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) from 7.12.1 to 7.12.10.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.10/packages/babel-plugin-transform-runtime)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump sirv from 1.0.7 to 1.0.10 in /site (#1145)
Bumps [sirv](https://github.com/lukeed/sirv) from 1.0.7 to 1.0.10.
- [Release notes](https://github.com/lukeed/sirv/releases)
- [Commits](https://github.com/lukeed/sirv/compare/v1.0.7...v1.0.10)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump rollup from 2.34.0 to 2.35.1 in /site (#1142)
Bumps [rollup](https://github.com/rollup/rollup) from 2.34.0 to 2.35.1.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v2.34.0...v2.35.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @rollup/plugin-node-resolve in /site (#1141)
Bumps [@rollup/plugin-node-resolve](https://github.com/rollup/plugins) from 10.0.0 to 11.0.1.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/node-resolve-v10.0.0...commonjs-v11.0.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump marked from 1.2.5 to 1.2.7 in /site (#1140)
Bumps [marked](https://github.com/markedjs/marked) from 1.2.5 to 1.2.7.
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/release.config.js)
- [Commits](https://github.com/markedjs/marked/compare/v1.2.5...v1.2.7)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/core from 7.12.9 to 7.12.10 in /site (#1139)
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.12.9 to 7.12.10.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.10/packages/babel-core)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump rollup-plugin-svelte from 6.1.1 to 7.0.0 in /site (#1138)
Bumps [rollup-plugin-svelte](https://github.com/sveltejs/rollup-plugin-svelte) from 6.1.1 to 7.0.0.
- [Release notes](https://github.com/sveltejs/rollup-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/rollup-plugin-svelte/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/rollup-plugin-svelte/compare/v6.1.1...v7.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/preset-env from 7.12.1 to 7.12.11 in /site (#1137)
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.12.1 to 7.12.11.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.11/packages/babel-preset-env)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* downgrade svelte plugin
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(console): dependabot deps (#1147)
* chore(deps-dev): bump @types/node from 14.14.13 to 14.14.19 in /console (#1146)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.13 to 14.14.19.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump ts-protoc-gen from 0.13.0 to 0.14.0 in /console (#1129)
Bumps [ts-protoc-gen](https://github.com/improbable-eng/ts-protoc-gen) from 0.13.0 to 0.14.0.
- [Release notes](https://github.com/improbable-eng/ts-protoc-gen/releases)
- [Changelog](https://github.com/improbable-eng/ts-protoc-gen/blob/master/CHANGELOG.md)
- [Commits](https://github.com/improbable-eng/ts-protoc-gen/compare/0.13.0...0.14.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/language-service in /console (#1128)
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 11.0.4 to 11.0.5.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/11.0.5/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/cli from 11.0.4 to 11.0.5 in /console (#1127)
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 11.0.4 to 11.0.5.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v11.0.4...v11.0.5)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular-devkit/build-angular in /console (#1126)
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1100.4 to 0.1100.5.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* audit
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: e-mail templates (#1158)
* View definition added
* Get templates and texts from the database.
* Fill in texts in templates
* Fill in texts in templates
* Client API added
* Weekly backup
* Weekly backup
* Daily backup
* Weekly backup
* Tests added
* Corrections from merge branch
* Fixes from pull request review
* chore(console): dependencies (#1189)
* chore(deps-dev): bump @angular/language-service in /console (#1187)
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 11.0.5 to 11.0.9.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/11.0.9/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump google-proto-files from 2.3.0 to 2.4.0 in /console (#1186)
Bumps [google-proto-files](https://github.com/googleapis/nodejs-proto-files) from 2.3.0 to 2.4.0.
- [Release notes](https://github.com/googleapis/nodejs-proto-files/releases)
- [Changelog](https://github.com/googleapis/nodejs-proto-files/blob/master/CHANGELOG.md)
- [Commits](https://github.com/googleapis/nodejs-proto-files/compare/v2.3.0...v2.4.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @types/node from 14.14.19 to 14.14.21 in /console (#1185)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.19 to 14.14.21.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/cli from 11.0.5 to 11.0.7 in /console (#1184)
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 11.0.5 to 11.0.7.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v11.0.5...v11.0.7)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump karma from 5.2.3 to 6.0.0 in /console (#1183)
Bumps [karma](https://github.com/karma-runner/karma) from 5.2.3 to 6.0.0.
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](https://github.com/karma-runner/karma/compare/v5.2.3...v6.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular-devkit/build-angular in /console (#1182)
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1100.5 to 0.1100.7.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: change login to command side
* feat: change login to command side
* fix: fix push on user
* fix(console): trigger unauthenticated dialog only once (#1170)
* fix: trigger dialog once
* remove log
* typed trigger
* chore(console): dependencies (#1205)
* chore(deps-dev): bump stylelint from 13.8.0 to 13.9.0 in /console (#1204)
Bumps [stylelint](https://github.com/stylelint/stylelint) from 13.8.0 to 13.9.0.
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/stylelint/stylelint/compare/13.8.0...13.9.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/language-service in /console (#1203)
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 11.0.9 to 11.1.0.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/11.1.0/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump karma from 6.0.0 to 6.0.1 in /console (#1202)
Bumps [karma](https://github.com/karma-runner/karma) from 6.0.0 to 6.0.1.
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](https://github.com/karma-runner/karma/compare/v6.0.0...v6.0.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/cli from 11.0.7 to 11.1.1 in /console (#1201)
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 11.0.7 to 11.1.1.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v11.0.7...v11.1.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @types/jasmine from 3.6.2 to 3.6.3 in /console (#1200)
Bumps [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) from 3.6.2 to 3.6.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* chore(deps-dev): bump @types/node from 14.14.21 to 14.14.22 in /console (#1199)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.21 to 14.14.22.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular-devkit/build-angular in /console (#1198)
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1100.7 to 0.1101.1.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* chore(deps): bump angularx-qrcode from 10.0.11 to 11.0.0 in /console (#1197)
Bumps [angularx-qrcode](https://github.com/cordobo/angularx-qrcode) from 10.0.11 to 11.0.0.
- [Release notes](https://github.com/cordobo/angularx-qrcode/releases)
- [Commits](https://github.com/cordobo/angularx-qrcode/compare/10.0.11...11.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* fix pack lock
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* fix: handle sequence correctly in subscription (#1209)
* feat: user command side
* feat: sign out
* feat: command side login
* feat: command side login
* feat: fix register user
* feat: fix register user
* feat: fix web auth n events
* feat: add machine keys
* feat: send codes
* feat: move authrequest to domain
* feat: move authrequest to domain
* feat: webauthn working
* fix: correct master after merges again (#1230)
* chore(docs): correct `iss` claim of jwt profile (#1229)
* core(docs): correct `iss` claim of jwt profile
* fix: correct master after merges again (#1230)
* feat(login): new palette based styles (#1149)
* chore(deps-dev): bump rollup from 2.33.2 to 2.34.0 in /site (#1040)
Bumps [rollup](https://github.com/rollup/rollup) from 2.33.2 to 2.34.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v2.33.2...v2.34.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump svelte-i18n from 3.2.5 to 3.3.0 in /site (#1039)
Bumps [svelte-i18n](https://github.com/kaisermann/svelte-i18n) from 3.2.5 to 3.3.0.
- [Release notes](https://github.com/kaisermann/svelte-i18n/releases)
- [Changelog](https://github.com/kaisermann/svelte-i18n/blob/main/CHANGELOG.md)
- [Commits](https://github.com/kaisermann/svelte-i18n/compare/v3.2.5...v3.3.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @rollup/plugin-url from 5.0.1 to 6.0.0 in /site (#1038)
Bumps [@rollup/plugin-url](https://github.com/rollup/plugins) from 5.0.1 to 6.0.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/url-v5.0.1...url-v6.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump svelte from 3.29.7 to 3.30.1 in /site (#1037)
Bumps [svelte](https://github.com/sveltejs/svelte) from 3.29.7 to 3.30.1.
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/compare/v3.29.7...v3.30.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps): bump marked from 1.2.4 to 1.2.5 in /site (#1036)
Bumps [marked](https://github.com/markedjs/marked) from 1.2.4 to 1.2.5.
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/release.config.js)
- [Commits](https://github.com/markedjs/marked/compare/v1.2.4...v1.2.5)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/core from 7.12.3 to 7.12.9 in /site (#1035)
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.12.3 to 7.12.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.9/packages/babel-core)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump rollup-plugin-svelte from 6.1.1 to 7.0.0 in /site (#1034)
Bumps [rollup-plugin-svelte](https://github.com/sveltejs/rollup-plugin-svelte) from 6.1.1 to 7.0.0.
- [Release notes](https://github.com/sveltejs/rollup-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/rollup-plugin-svelte/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/rollup-plugin-svelte/compare/v6.1.1...v7.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @rollup/plugin-commonjs in /site (#1033)
Bumps [@rollup/plugin-commonjs](https://github.com/rollup/plugins) from 15.1.0 to 17.0.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/commonjs-v15.1.0...commonjs-v17.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @rollup/plugin-node-resolve in /site (#1032)
Bumps [@rollup/plugin-node-resolve](https://github.com/rollup/plugins) from 10.0.0 to 11.0.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/node-resolve-v10.0.0...commonjs-v11.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @babel/preset-env from 7.12.1 to 7.12.7 in /site (#1031)
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.12.1 to 7.12.7.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.12.7/packages/babel-preset-env)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* go
* bundle files, lgn-color, legacy theme
* remove old references
* light dark context, button styles, zitadel brand
* button theme, edit templates
* typography theme mixins
* input styles, container, extend light dark palette
* footer, palette, container
* container, label, assets, header
* action container, input, typography label, adapt button theme
* a and footer styles, adapt palette
* user log profile, resourcetempurl
* postinstall againnn
* wrochage
* rm local grpc
* button elevation, helper for components
* radio
* radio button mixins, bundle
* qr code styles, secret clipboard, icon pack
* stroked buttons, icon buttons, header action, typography
* fix password policy styles
* account selection
* account selection, lgn avatar
* mocks
* template fixes, animations scss
* checkbox, register temp
* checkbox appr
* fix checkbox, remove input interference
* select theme
* avatar script, user selection, password policy validation fix
* fix formfield state for register and change pwd
* footer, main style, qr code fix, mfa type fix, account sel, checkbox
* fotter tos, user select
* reverse buttons for intial submit action
* theme script, themed error messages, header img source
* content wrapper, i18n, mobile
* emptyline
* idp mixins, fix unstyled html
* register container
* register layout, list themes, policy theme, register org
* massive asset cleanup
* fix source path, add missing icon, fix complexity refs, prefix
* remove material icons, unused assets, fix icon font
* move icon pack
* avatar, contrast theme, error fix
* zitadel css map
* revert go mod
* fix mfa verify actions
* add idp styles
* fix google colors, idp styles
* fix: bugs
* fix register options, google
* fix script, mobile layout
* precompile font selection
* go mod tidy
* assets and cleanup
* input suffix, fix alignment, actions, add progress bar themes
* progress bar mixins, layout fixes
* remove test from loginname
* cleanup comments, scripts
* clear comments
* fix external back button
* fix mfa alignment
* fix actions layout, on dom change listener for suffix
* free tier change, success label
* fix: button font line-height
* remove tabindex
* remove comment
* remove comment
* Update internal/ui/login/handler/password_handler.go
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maximilian Peintner <csaq7175@uibk.ac.at>
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
* feat: external users
* chore(console): dependencies (#1233)
* chore(deps-dev): bump @angular-devkit/build-angular in /console (#1214)
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1101.1 to 0.1101.2.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump karma from 6.0.1 to 6.0.3 in /console (#1215)
Bumps [karma](https://github.com/karma-runner/karma) from 6.0.1 to 6.0.3.
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](https://github.com/karma-runner/karma/compare/v6.0.1...v6.0.3)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/language-service in /console (#1216)
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 11.1.0 to 11.1.1.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/11.1.1/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/cli from 11.1.1 to 11.1.2 in /console (#1217)
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 11.1.1 to 11.1.2.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v11.1.1...v11.1.2)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* lock
* site deps
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: external users login
* feat: notify users
* fix: tests
* feat: cascade remove user grants on project remove
* feat: cascade remove user grants on user remove
* feat: cascade remove roles
* feat: verified domain
* feat: cascade remove on idp config remove
* feat: cascade remove on system idp config remove
* fix: get email texts with default language (#1238)
* fix: login policy
* fix: login policy
* fix: cascade delete on remove idp from default policy
* fix(login): mail verification (#1237)
* fix: mail verification
* not block, stroked
* fix: issues of new login ui (#1241)
* fix: i18n of register
* fix: autofocus
* feat(operator): zitadel and database operator (#1208)
* feat(operator): add base for zitadel operator
* fix(operator): changed pipeline to release operator
* fix(operator): fmt with only one parameter
* fix(operator): corrected workflow job name
* fix(zitadelctl): added restore and backuplist command
* fix(zitadelctl): scale for restore
* chore(container): use scratch for deploy container
* fix(zitadelctl): limit image to scratch
* fix(migration): added migration scripts for newer version
* fix(operator): changed handling of kubeconfig in operator logic
* fix(operator): changed handling of secrets in operator logic
* fix(operator): use new version of zitadel
* fix(operator): added path for migrations
* fix(operator): delete doublets of migration scripts
* fix(operator): delete subpaths and integrate logic into init container
* fix(operator): corrected path in dockerfile for local migrations
* fix(operator): added migrations for cockroachdb-secure
* fix(operator): delete logic for ambassador module
* fix(operator): added read and write secret commands
* fix(operator): correct and align operator pipeline with zitadel pipeline
* fix(operator): correct yaml error in operator pipeline
* fix(operator): correct action name in operator pipeline
* fix(operator): correct case-sensitive filename in operator pipeline
* fix(operator): upload artifacts from buildx output
* fix(operator): corrected attribute spelling error
* fix(operator): combined jobs for operator binary and image
* fix(operator): added missing comma in operator pipeline
* fix(operator): added codecov for operator image
* fix(operator): added codecov for operator image
* fix(testing): code changes for testing and several unit-tests (#1009)
* fix(operator): usage of interface of kubernetes client for testing and several unit-tests
* fix(operator): several unit-tests
* fix(operator): several unit-tests
* fix(operator): changed order for the operator logic
* fix(operator): added version of zitadelctl from semantic release
* fix(operator): corrected function call with version of zitadelctl
* fix(operator): corrected function call with version of zitadelctl
* fix(operator): add check output to operator release pipeline
* fix(operator): set --short length everywhere to 12
* fix(operator): zitadel setup in job instead of exec with several unit tests
* fix(operator): fixes to combine newest zitadel and testing branch
* fix(operator): corrected path in Dockerfile
* fix(operator): fixed unit-test that was ignored during changes
* fix(operator): fixed unit-test that was ignored during changes
* fix(operator): corrected Dockerfile to correctly use env variable
* fix(operator): quickfix takeoff deployment
* fix(operator): corrected the clusterrolename in the applied artifacts
* fix: update secure migrations
* fix(operator): migrations (#1057)
* fix(operator): copied migrations from orbos repository
* fix(operator): newest migrations
* chore: use cockroach-secure
* fix: rename migration
* fix: remove insecure cockroach migrations
Co-authored-by: Stefan Benz <stefan@caos.ch>
* fix: finalize labels
* fix(operator): cli logging concurrent and fixe deployment of operator during restore
* fix: finalize labels and cli commands
* fix: restore
* chore: cockroachdb is always secure
* chore: use orbos consistent-labels latest commit
* test: make tests compatible with new labels
* fix: default to sa token for start command
* fix: use cockroachdb v12.02
* fix: don't delete flyway user
* test: fix migration test
* fix: use correct table qualifiers
* fix: don't alter sequence ownership
* fix: upgrade flyway
* fix: change ownership of all dbs and tables to admin user
* fix: change defaultdb user
* fix: treat clientid status codes >= 400 as errors
* fix: reconcile specified ZITADEL version, not binary version
* fix: add ca-certs
* fix: use latest orbos code
* fix: use orbos with fixed race condition
* fix: use latest ORBOS code
* fix: use latest ORBOS code
* fix: make migration and scaling around restoring work
* fix(operator): move zitadel operator
* chore(migrations): include owner change migration
* feat(db): add code base for database operator
* fix(db): change used image registry for database operator
* fix(db): generated mock
* fix(db): add accidentally ignored file
* fix(db): add cockroachdb backup image to pipeline
* fix(db): correct pipeline and image versions
* fix(db): correct version of used orbos
* fix(db): correct database import
* fix(db): go mod tidy
* fix(db): use new version for orbos
* fix(migrations): include migrations into zitadelctl binary (#1211)
* fix(db): use statik to integrate migrations into binary
* fix(migrations): corrections unit tests and pipeline for integrated migrations into zitadelctl binary
* fix(migrations): correction in dockerfile for pipeline build
* fix(migrations): correction in dockerfile for pipeline build
* fix(migrations): dockerfile changes for cache optimization
* fix(database): correct used part-of label in database operator
* fix(database): correct used selectable label in zitadel operator
* fix(operator): correct lables for user secrets in zitadel operator
* fix(operator): correct lables for service test in zitadel operator
* fix: don't enable database features for user operations (#1227)
* fix: don't enable database features for user operations
* fix: omit database feature for connection info adapter
* fix: use latest orbos version
* fix: update ORBOS (#1240)
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: Elio Bischof <eliobischof@gmail.com>
* Merge branch 'new-eventstore' into cascades
# Conflicts:
# internal/auth/repository/auth_request.go
# internal/auth/repository/eventsourcing/eventstore/auth_request.go
# internal/management/repository/eventsourcing/eventstore/user_grant.go
# internal/management/repository/user_grant.go
# internal/ui/login/handler/external_login_handler.go
# internal/ui/login/handler/external_register_handler.go
# internal/ui/login/handler/init_password_handler.go
# internal/ui/login/handler/register_handler.go
# internal/user/repository/view/model/notify_user.go
# internal/v2/command/org_policy_login.go
# internal/v2/command/project.go
# internal/v2/command/user.go
# internal/v2/command/user_human.go
# internal/v2/command/user_human_externalidp.go
# internal/v2/command/user_human_init.go
# internal/v2/command/user_human_password.go
# internal/v2/command/user_human_webauthn.go
# internal/v2/domain/next_step.go
# internal/v2/domain/policy_login.go
# internal/v2/domain/request.go
* Merge branch 'new-eventstore' into cascades
# Conflicts:
# internal/auth/repository/auth_request.go
# internal/auth/repository/eventsourcing/eventstore/auth_request.go
# internal/management/repository/eventsourcing/eventstore/user_grant.go
# internal/management/repository/user_grant.go
# internal/ui/login/handler/external_login_handler.go
# internal/ui/login/handler/external_register_handler.go
# internal/ui/login/handler/init_password_handler.go
# internal/ui/login/handler/register_handler.go
# internal/user/repository/view/model/notify_user.go
# internal/v2/command/org_policy_login.go
# internal/v2/command/project.go
# internal/v2/command/user.go
# internal/v2/command/user_human.go
# internal/v2/command/user_human_externalidp.go
# internal/v2/command/user_human_init.go
# internal/v2/command/user_human_password.go
# internal/v2/command/user_human_webauthn.go
# internal/v2/domain/next_step.go
# internal/v2/domain/policy_login.go
# internal/v2/domain/request.go
* chore: add local migrate_local.go again (#1261)
* fix: logging on cascade removes
* fix: migrations
* fix: tests
* fix: tests
* chore: pass params in migrate_local.go
* migrations
* fix query
* fix tests
* fix tests
Co-authored-by: Max Peintner <max@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Waeger <49439088+michaelulrichwaeger@users.noreply.github.com>
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
Co-authored-by: Maximilian Peintner <csaq7175@uibk.ac.at>
Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: Elio Bischof <eliobischof@gmail.com>
2021-02-09 09:14:40 +00:00
|
|
|
//{
|
|
|
|
// name: "no mapper",
|
|
|
|
// args: args{
|
|
|
|
// events: []*repository.Event{
|
|
|
|
// {
|
|
|
|
// Type: "no.mapper.found",
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// fields: fields{
|
|
|
|
// eventMapper: map[EventType]func(*repository.Event) (EventReader, error){},
|
|
|
|
// },
|
|
|
|
// res: res{
|
|
|
|
// //TODO: as long as not all events are implemented in v2 eventstore doesn't return an error
|
|
|
|
// // afterwards it will return an error on un
|
|
|
|
// wantErr: true,
|
|
|
|
// },
|
|
|
|
//},
|
2020-10-21 17:29:22 +00:00
|
|
|
{
|
|
|
|
name: "mapping failed",
|
|
|
|
args: args{
|
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
|
|
|
Type: "test.event",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(*repository.Event) (EventReader, error) {
|
2020-10-21 17:29:22 +00:00
|
|
|
return nil, errors.ThrowInternal(nil, "V2-8FbQk", "test err")
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "mapping succeeded",
|
|
|
|
args: args{
|
|
|
|
events: []*repository.Event{
|
|
|
|
{
|
|
|
|
Type: "test.event",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
fields: fields{
|
2020-11-06 16:25:07 +00:00
|
|
|
eventMapper: map[EventType]func(*repository.Event) (EventReader, error){
|
|
|
|
"test.event": func(*repository.Event) (EventReader, error) {
|
2020-10-21 17:29:22 +00:00
|
|
|
return &testEvent{}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
2020-11-06 16:25:07 +00:00
|
|
|
events: []EventReader{
|
2020-10-21 17:29:22 +00:00
|
|
|
&testEvent{},
|
|
|
|
},
|
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
es := &Eventstore{
|
2020-10-27 15:03:17 +00:00
|
|
|
interceptorMutex: sync.Mutex{},
|
|
|
|
eventInterceptors: map[EventType]eventTypeInterceptors{},
|
2020-10-21 17:29:22 +00:00
|
|
|
}
|
|
|
|
for eventType, mapper := range tt.fields.eventMapper {
|
2020-10-27 14:42:18 +00:00
|
|
|
es = es.RegisterFilterEventMapper(eventType, mapper)
|
|
|
|
}
|
2020-10-27 15:03:17 +00:00
|
|
|
if len(es.eventInterceptors) != len(tt.fields.eventMapper) {
|
|
|
|
t.Errorf("register event mapper failed expected mapper amount: %d, got: %d", len(tt.fields.eventMapper), len(es.eventInterceptors))
|
2020-10-27 14:42:18 +00:00
|
|
|
t.FailNow()
|
2020-10-21 17:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gotMappedEvents, err := es.mapEvents(tt.args.events)
|
|
|
|
if (err != nil) != tt.res.wantErr {
|
|
|
|
t.Errorf("Eventstore.mapEvents() error = %v, wantErr %v", err, tt.res.wantErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(gotMappedEvents, tt.res.events) {
|
|
|
|
t.Errorf("Eventstore.mapEvents() = %v, want %v", gotMappedEvents, tt.res.events)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|