| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485 |
- // Code generated by go-mockgen 1.2.0; DO NOT EDIT.
- package db
- import (
- "context"
- "sync"
- lfsutil "gogs.io/gogs/internal/lfsutil"
- )
- // MockAccessTokensStore is a mock implementation of the AccessTokensStore
- // interface (from the package gogs.io/gogs/internal/db) used for unit
- // testing.
- type MockAccessTokensStore struct {
- // CreateFunc is an instance of a mock function object controlling the
- // behavior of the method Create.
- CreateFunc *AccessTokensStoreCreateFunc
- // DeleteByIDFunc is an instance of a mock function object controlling
- // the behavior of the method DeleteByID.
- DeleteByIDFunc *AccessTokensStoreDeleteByIDFunc
- // GetBySHA1Func is an instance of a mock function object controlling
- // the behavior of the method GetBySHA1.
- GetBySHA1Func *AccessTokensStoreGetBySHA1Func
- // ListFunc is an instance of a mock function object controlling the
- // behavior of the method List.
- ListFunc *AccessTokensStoreListFunc
- // TouchFunc is an instance of a mock function object controlling the
- // behavior of the method Touch.
- TouchFunc *AccessTokensStoreTouchFunc
- }
- // NewMockAccessTokensStore creates a new mock of the AccessTokensStore
- // interface. All methods return zero values for all results, unless
- // overwritten.
- func NewMockAccessTokensStore() *MockAccessTokensStore {
- return &MockAccessTokensStore{
- CreateFunc: &AccessTokensStoreCreateFunc{
- defaultHook: func(context.Context, int64, string) (r0 *AccessToken, r1 error) {
- return
- },
- },
- DeleteByIDFunc: &AccessTokensStoreDeleteByIDFunc{
- defaultHook: func(context.Context, int64, int64) (r0 error) {
- return
- },
- },
- GetBySHA1Func: &AccessTokensStoreGetBySHA1Func{
- defaultHook: func(context.Context, string) (r0 *AccessToken, r1 error) {
- return
- },
- },
- ListFunc: &AccessTokensStoreListFunc{
- defaultHook: func(context.Context, int64) (r0 []*AccessToken, r1 error) {
- return
- },
- },
- TouchFunc: &AccessTokensStoreTouchFunc{
- defaultHook: func(context.Context, int64) (r0 error) {
- return
- },
- },
- }
- }
- // NewStrictMockAccessTokensStore creates a new mock of the
- // AccessTokensStore interface. All methods panic on invocation, unless
- // overwritten.
- func NewStrictMockAccessTokensStore() *MockAccessTokensStore {
- return &MockAccessTokensStore{
- CreateFunc: &AccessTokensStoreCreateFunc{
- defaultHook: func(context.Context, int64, string) (*AccessToken, error) {
- panic("unexpected invocation of MockAccessTokensStore.Create")
- },
- },
- DeleteByIDFunc: &AccessTokensStoreDeleteByIDFunc{
- defaultHook: func(context.Context, int64, int64) error {
- panic("unexpected invocation of MockAccessTokensStore.DeleteByID")
- },
- },
- GetBySHA1Func: &AccessTokensStoreGetBySHA1Func{
- defaultHook: func(context.Context, string) (*AccessToken, error) {
- panic("unexpected invocation of MockAccessTokensStore.GetBySHA1")
- },
- },
- ListFunc: &AccessTokensStoreListFunc{
- defaultHook: func(context.Context, int64) ([]*AccessToken, error) {
- panic("unexpected invocation of MockAccessTokensStore.List")
- },
- },
- TouchFunc: &AccessTokensStoreTouchFunc{
- defaultHook: func(context.Context, int64) error {
- panic("unexpected invocation of MockAccessTokensStore.Touch")
- },
- },
- }
- }
- // NewMockAccessTokensStoreFrom creates a new mock of the
- // MockAccessTokensStore interface. All methods delegate to the given
- // implementation, unless overwritten.
- func NewMockAccessTokensStoreFrom(i AccessTokensStore) *MockAccessTokensStore {
- return &MockAccessTokensStore{
- CreateFunc: &AccessTokensStoreCreateFunc{
- defaultHook: i.Create,
- },
- DeleteByIDFunc: &AccessTokensStoreDeleteByIDFunc{
- defaultHook: i.DeleteByID,
- },
- GetBySHA1Func: &AccessTokensStoreGetBySHA1Func{
- defaultHook: i.GetBySHA1,
- },
- ListFunc: &AccessTokensStoreListFunc{
- defaultHook: i.List,
- },
- TouchFunc: &AccessTokensStoreTouchFunc{
- defaultHook: i.Touch,
- },
- }
- }
- // AccessTokensStoreCreateFunc describes the behavior when the Create method
- // of the parent MockAccessTokensStore instance is invoked.
- type AccessTokensStoreCreateFunc struct {
- defaultHook func(context.Context, int64, string) (*AccessToken, error)
- hooks []func(context.Context, int64, string) (*AccessToken, error)
- history []AccessTokensStoreCreateFuncCall
- mutex sync.Mutex
- }
- // Create delegates to the next hook function in the queue and stores the
- // parameter and result values of this invocation.
- func (m *MockAccessTokensStore) Create(v0 context.Context, v1 int64, v2 string) (*AccessToken, error) {
- r0, r1 := m.CreateFunc.nextHook()(v0, v1, v2)
- m.CreateFunc.appendCall(AccessTokensStoreCreateFuncCall{v0, v1, v2, r0, r1})
- return r0, r1
- }
- // SetDefaultHook sets function that is called when the Create method of the
- // parent MockAccessTokensStore instance is invoked and the hook queue is
- // empty.
- func (f *AccessTokensStoreCreateFunc) SetDefaultHook(hook func(context.Context, int64, string) (*AccessToken, error)) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // Create method of the parent MockAccessTokensStore instance invokes the
- // hook at the front of the queue and discards it. After the queue is empty,
- // the default hook function is invoked for any future action.
- func (f *AccessTokensStoreCreateFunc) PushHook(hook func(context.Context, int64, string) (*AccessToken, error)) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *AccessTokensStoreCreateFunc) SetDefaultReturn(r0 *AccessToken, r1 error) {
- f.SetDefaultHook(func(context.Context, int64, string) (*AccessToken, error) {
- return r0, r1
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *AccessTokensStoreCreateFunc) PushReturn(r0 *AccessToken, r1 error) {
- f.PushHook(func(context.Context, int64, string) (*AccessToken, error) {
- return r0, r1
- })
- }
- func (f *AccessTokensStoreCreateFunc) nextHook() func(context.Context, int64, string) (*AccessToken, error) {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *AccessTokensStoreCreateFunc) appendCall(r0 AccessTokensStoreCreateFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of AccessTokensStoreCreateFuncCall objects
- // describing the invocations of this function.
- func (f *AccessTokensStoreCreateFunc) History() []AccessTokensStoreCreateFuncCall {
- f.mutex.Lock()
- history := make([]AccessTokensStoreCreateFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // AccessTokensStoreCreateFuncCall is an object that describes an invocation
- // of method Create on an instance of MockAccessTokensStore.
- type AccessTokensStoreCreateFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Arg2 is the value of the 3rd argument passed to this method
- // invocation.
- Arg2 string
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 *AccessToken
- // Result1 is the value of the 2nd result returned from this method
- // invocation.
- Result1 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c AccessTokensStoreCreateFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1, c.Arg2}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c AccessTokensStoreCreateFuncCall) Results() []interface{} {
- return []interface{}{c.Result0, c.Result1}
- }
- // AccessTokensStoreDeleteByIDFunc describes the behavior when the
- // DeleteByID method of the parent MockAccessTokensStore instance is
- // invoked.
- type AccessTokensStoreDeleteByIDFunc struct {
- defaultHook func(context.Context, int64, int64) error
- hooks []func(context.Context, int64, int64) error
- history []AccessTokensStoreDeleteByIDFuncCall
- mutex sync.Mutex
- }
- // DeleteByID delegates to the next hook function in the queue and stores
- // the parameter and result values of this invocation.
- func (m *MockAccessTokensStore) DeleteByID(v0 context.Context, v1 int64, v2 int64) error {
- r0 := m.DeleteByIDFunc.nextHook()(v0, v1, v2)
- m.DeleteByIDFunc.appendCall(AccessTokensStoreDeleteByIDFuncCall{v0, v1, v2, r0})
- return r0
- }
- // SetDefaultHook sets function that is called when the DeleteByID method of
- // the parent MockAccessTokensStore instance is invoked and the hook queue
- // is empty.
- func (f *AccessTokensStoreDeleteByIDFunc) SetDefaultHook(hook func(context.Context, int64, int64) error) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // DeleteByID method of the parent MockAccessTokensStore instance invokes
- // the hook at the front of the queue and discards it. After the queue is
- // empty, the default hook function is invoked for any future action.
- func (f *AccessTokensStoreDeleteByIDFunc) PushHook(hook func(context.Context, int64, int64) error) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *AccessTokensStoreDeleteByIDFunc) SetDefaultReturn(r0 error) {
- f.SetDefaultHook(func(context.Context, int64, int64) error {
- return r0
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *AccessTokensStoreDeleteByIDFunc) PushReturn(r0 error) {
- f.PushHook(func(context.Context, int64, int64) error {
- return r0
- })
- }
- func (f *AccessTokensStoreDeleteByIDFunc) nextHook() func(context.Context, int64, int64) error {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *AccessTokensStoreDeleteByIDFunc) appendCall(r0 AccessTokensStoreDeleteByIDFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of AccessTokensStoreDeleteByIDFuncCall objects
- // describing the invocations of this function.
- func (f *AccessTokensStoreDeleteByIDFunc) History() []AccessTokensStoreDeleteByIDFuncCall {
- f.mutex.Lock()
- history := make([]AccessTokensStoreDeleteByIDFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // AccessTokensStoreDeleteByIDFuncCall is an object that describes an
- // invocation of method DeleteByID on an instance of MockAccessTokensStore.
- type AccessTokensStoreDeleteByIDFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Arg2 is the value of the 3rd argument passed to this method
- // invocation.
- Arg2 int64
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c AccessTokensStoreDeleteByIDFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1, c.Arg2}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c AccessTokensStoreDeleteByIDFuncCall) Results() []interface{} {
- return []interface{}{c.Result0}
- }
- // AccessTokensStoreGetBySHA1Func describes the behavior when the GetBySHA1
- // method of the parent MockAccessTokensStore instance is invoked.
- type AccessTokensStoreGetBySHA1Func struct {
- defaultHook func(context.Context, string) (*AccessToken, error)
- hooks []func(context.Context, string) (*AccessToken, error)
- history []AccessTokensStoreGetBySHA1FuncCall
- mutex sync.Mutex
- }
- // GetBySHA1 delegates to the next hook function in the queue and stores the
- // parameter and result values of this invocation.
- func (m *MockAccessTokensStore) GetBySHA1(v0 context.Context, v1 string) (*AccessToken, error) {
- r0, r1 := m.GetBySHA1Func.nextHook()(v0, v1)
- m.GetBySHA1Func.appendCall(AccessTokensStoreGetBySHA1FuncCall{v0, v1, r0, r1})
- return r0, r1
- }
- // SetDefaultHook sets function that is called when the GetBySHA1 method of
- // the parent MockAccessTokensStore instance is invoked and the hook queue
- // is empty.
- func (f *AccessTokensStoreGetBySHA1Func) SetDefaultHook(hook func(context.Context, string) (*AccessToken, error)) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // GetBySHA1 method of the parent MockAccessTokensStore instance invokes the
- // hook at the front of the queue and discards it. After the queue is empty,
- // the default hook function is invoked for any future action.
- func (f *AccessTokensStoreGetBySHA1Func) PushHook(hook func(context.Context, string) (*AccessToken, error)) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *AccessTokensStoreGetBySHA1Func) SetDefaultReturn(r0 *AccessToken, r1 error) {
- f.SetDefaultHook(func(context.Context, string) (*AccessToken, error) {
- return r0, r1
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *AccessTokensStoreGetBySHA1Func) PushReturn(r0 *AccessToken, r1 error) {
- f.PushHook(func(context.Context, string) (*AccessToken, error) {
- return r0, r1
- })
- }
- func (f *AccessTokensStoreGetBySHA1Func) nextHook() func(context.Context, string) (*AccessToken, error) {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *AccessTokensStoreGetBySHA1Func) appendCall(r0 AccessTokensStoreGetBySHA1FuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of AccessTokensStoreGetBySHA1FuncCall objects
- // describing the invocations of this function.
- func (f *AccessTokensStoreGetBySHA1Func) History() []AccessTokensStoreGetBySHA1FuncCall {
- f.mutex.Lock()
- history := make([]AccessTokensStoreGetBySHA1FuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // AccessTokensStoreGetBySHA1FuncCall is an object that describes an
- // invocation of method GetBySHA1 on an instance of MockAccessTokensStore.
- type AccessTokensStoreGetBySHA1FuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 string
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 *AccessToken
- // Result1 is the value of the 2nd result returned from this method
- // invocation.
- Result1 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c AccessTokensStoreGetBySHA1FuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c AccessTokensStoreGetBySHA1FuncCall) Results() []interface{} {
- return []interface{}{c.Result0, c.Result1}
- }
- // AccessTokensStoreListFunc describes the behavior when the List method of
- // the parent MockAccessTokensStore instance is invoked.
- type AccessTokensStoreListFunc struct {
- defaultHook func(context.Context, int64) ([]*AccessToken, error)
- hooks []func(context.Context, int64) ([]*AccessToken, error)
- history []AccessTokensStoreListFuncCall
- mutex sync.Mutex
- }
- // List delegates to the next hook function in the queue and stores the
- // parameter and result values of this invocation.
- func (m *MockAccessTokensStore) List(v0 context.Context, v1 int64) ([]*AccessToken, error) {
- r0, r1 := m.ListFunc.nextHook()(v0, v1)
- m.ListFunc.appendCall(AccessTokensStoreListFuncCall{v0, v1, r0, r1})
- return r0, r1
- }
- // SetDefaultHook sets function that is called when the List method of the
- // parent MockAccessTokensStore instance is invoked and the hook queue is
- // empty.
- func (f *AccessTokensStoreListFunc) SetDefaultHook(hook func(context.Context, int64) ([]*AccessToken, error)) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // List method of the parent MockAccessTokensStore instance invokes the hook
- // at the front of the queue and discards it. After the queue is empty, the
- // default hook function is invoked for any future action.
- func (f *AccessTokensStoreListFunc) PushHook(hook func(context.Context, int64) ([]*AccessToken, error)) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *AccessTokensStoreListFunc) SetDefaultReturn(r0 []*AccessToken, r1 error) {
- f.SetDefaultHook(func(context.Context, int64) ([]*AccessToken, error) {
- return r0, r1
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *AccessTokensStoreListFunc) PushReturn(r0 []*AccessToken, r1 error) {
- f.PushHook(func(context.Context, int64) ([]*AccessToken, error) {
- return r0, r1
- })
- }
- func (f *AccessTokensStoreListFunc) nextHook() func(context.Context, int64) ([]*AccessToken, error) {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *AccessTokensStoreListFunc) appendCall(r0 AccessTokensStoreListFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of AccessTokensStoreListFuncCall objects
- // describing the invocations of this function.
- func (f *AccessTokensStoreListFunc) History() []AccessTokensStoreListFuncCall {
- f.mutex.Lock()
- history := make([]AccessTokensStoreListFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // AccessTokensStoreListFuncCall is an object that describes an invocation
- // of method List on an instance of MockAccessTokensStore.
- type AccessTokensStoreListFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 []*AccessToken
- // Result1 is the value of the 2nd result returned from this method
- // invocation.
- Result1 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c AccessTokensStoreListFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c AccessTokensStoreListFuncCall) Results() []interface{} {
- return []interface{}{c.Result0, c.Result1}
- }
- // AccessTokensStoreTouchFunc describes the behavior when the Touch method
- // of the parent MockAccessTokensStore instance is invoked.
- type AccessTokensStoreTouchFunc struct {
- defaultHook func(context.Context, int64) error
- hooks []func(context.Context, int64) error
- history []AccessTokensStoreTouchFuncCall
- mutex sync.Mutex
- }
- // Touch delegates to the next hook function in the queue and stores the
- // parameter and result values of this invocation.
- func (m *MockAccessTokensStore) Touch(v0 context.Context, v1 int64) error {
- r0 := m.TouchFunc.nextHook()(v0, v1)
- m.TouchFunc.appendCall(AccessTokensStoreTouchFuncCall{v0, v1, r0})
- return r0
- }
- // SetDefaultHook sets function that is called when the Touch method of the
- // parent MockAccessTokensStore instance is invoked and the hook queue is
- // empty.
- func (f *AccessTokensStoreTouchFunc) SetDefaultHook(hook func(context.Context, int64) error) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // Touch method of the parent MockAccessTokensStore instance invokes the
- // hook at the front of the queue and discards it. After the queue is empty,
- // the default hook function is invoked for any future action.
- func (f *AccessTokensStoreTouchFunc) PushHook(hook func(context.Context, int64) error) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *AccessTokensStoreTouchFunc) SetDefaultReturn(r0 error) {
- f.SetDefaultHook(func(context.Context, int64) error {
- return r0
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *AccessTokensStoreTouchFunc) PushReturn(r0 error) {
- f.PushHook(func(context.Context, int64) error {
- return r0
- })
- }
- func (f *AccessTokensStoreTouchFunc) nextHook() func(context.Context, int64) error {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *AccessTokensStoreTouchFunc) appendCall(r0 AccessTokensStoreTouchFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of AccessTokensStoreTouchFuncCall objects
- // describing the invocations of this function.
- func (f *AccessTokensStoreTouchFunc) History() []AccessTokensStoreTouchFuncCall {
- f.mutex.Lock()
- history := make([]AccessTokensStoreTouchFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // AccessTokensStoreTouchFuncCall is an object that describes an invocation
- // of method Touch on an instance of MockAccessTokensStore.
- type AccessTokensStoreTouchFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c AccessTokensStoreTouchFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c AccessTokensStoreTouchFuncCall) Results() []interface{} {
- return []interface{}{c.Result0}
- }
- // MockLFSStore is a mock implementation of the LFSStore interface (from the
- // package gogs.io/gogs/internal/db) used for unit testing.
- type MockLFSStore struct {
- // CreateObjectFunc is an instance of a mock function object controlling
- // the behavior of the method CreateObject.
- CreateObjectFunc *LFSStoreCreateObjectFunc
- // GetObjectByOIDFunc is an instance of a mock function object
- // controlling the behavior of the method GetObjectByOID.
- GetObjectByOIDFunc *LFSStoreGetObjectByOIDFunc
- // GetObjectsByOIDsFunc is an instance of a mock function object
- // controlling the behavior of the method GetObjectsByOIDs.
- GetObjectsByOIDsFunc *LFSStoreGetObjectsByOIDsFunc
- }
- // NewMockLFSStore creates a new mock of the LFSStore interface. All methods
- // return zero values for all results, unless overwritten.
- func NewMockLFSStore() *MockLFSStore {
- return &MockLFSStore{
- CreateObjectFunc: &LFSStoreCreateObjectFunc{
- defaultHook: func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) (r0 error) {
- return
- },
- },
- GetObjectByOIDFunc: &LFSStoreGetObjectByOIDFunc{
- defaultHook: func(context.Context, int64, lfsutil.OID) (r0 *LFSObject, r1 error) {
- return
- },
- },
- GetObjectsByOIDsFunc: &LFSStoreGetObjectsByOIDsFunc{
- defaultHook: func(context.Context, int64, ...lfsutil.OID) (r0 []*LFSObject, r1 error) {
- return
- },
- },
- }
- }
- // NewStrictMockLFSStore creates a new mock of the LFSStore interface. All
- // methods panic on invocation, unless overwritten.
- func NewStrictMockLFSStore() *MockLFSStore {
- return &MockLFSStore{
- CreateObjectFunc: &LFSStoreCreateObjectFunc{
- defaultHook: func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) error {
- panic("unexpected invocation of MockLFSStore.CreateObject")
- },
- },
- GetObjectByOIDFunc: &LFSStoreGetObjectByOIDFunc{
- defaultHook: func(context.Context, int64, lfsutil.OID) (*LFSObject, error) {
- panic("unexpected invocation of MockLFSStore.GetObjectByOID")
- },
- },
- GetObjectsByOIDsFunc: &LFSStoreGetObjectsByOIDsFunc{
- defaultHook: func(context.Context, int64, ...lfsutil.OID) ([]*LFSObject, error) {
- panic("unexpected invocation of MockLFSStore.GetObjectsByOIDs")
- },
- },
- }
- }
- // NewMockLFSStoreFrom creates a new mock of the MockLFSStore interface. All
- // methods delegate to the given implementation, unless overwritten.
- func NewMockLFSStoreFrom(i LFSStore) *MockLFSStore {
- return &MockLFSStore{
- CreateObjectFunc: &LFSStoreCreateObjectFunc{
- defaultHook: i.CreateObject,
- },
- GetObjectByOIDFunc: &LFSStoreGetObjectByOIDFunc{
- defaultHook: i.GetObjectByOID,
- },
- GetObjectsByOIDsFunc: &LFSStoreGetObjectsByOIDsFunc{
- defaultHook: i.GetObjectsByOIDs,
- },
- }
- }
- // LFSStoreCreateObjectFunc describes the behavior when the CreateObject
- // method of the parent MockLFSStore instance is invoked.
- type LFSStoreCreateObjectFunc struct {
- defaultHook func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) error
- hooks []func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) error
- history []LFSStoreCreateObjectFuncCall
- mutex sync.Mutex
- }
- // CreateObject delegates to the next hook function in the queue and stores
- // the parameter and result values of this invocation.
- func (m *MockLFSStore) CreateObject(v0 context.Context, v1 int64, v2 lfsutil.OID, v3 int64, v4 lfsutil.Storage) error {
- r0 := m.CreateObjectFunc.nextHook()(v0, v1, v2, v3, v4)
- m.CreateObjectFunc.appendCall(LFSStoreCreateObjectFuncCall{v0, v1, v2, v3, v4, r0})
- return r0
- }
- // SetDefaultHook sets function that is called when the CreateObject method
- // of the parent MockLFSStore instance is invoked and the hook queue is
- // empty.
- func (f *LFSStoreCreateObjectFunc) SetDefaultHook(hook func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) error) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // CreateObject method of the parent MockLFSStore instance invokes the hook
- // at the front of the queue and discards it. After the queue is empty, the
- // default hook function is invoked for any future action.
- func (f *LFSStoreCreateObjectFunc) PushHook(hook func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) error) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *LFSStoreCreateObjectFunc) SetDefaultReturn(r0 error) {
- f.SetDefaultHook(func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) error {
- return r0
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *LFSStoreCreateObjectFunc) PushReturn(r0 error) {
- f.PushHook(func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) error {
- return r0
- })
- }
- func (f *LFSStoreCreateObjectFunc) nextHook() func(context.Context, int64, lfsutil.OID, int64, lfsutil.Storage) error {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *LFSStoreCreateObjectFunc) appendCall(r0 LFSStoreCreateObjectFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of LFSStoreCreateObjectFuncCall objects
- // describing the invocations of this function.
- func (f *LFSStoreCreateObjectFunc) History() []LFSStoreCreateObjectFuncCall {
- f.mutex.Lock()
- history := make([]LFSStoreCreateObjectFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // LFSStoreCreateObjectFuncCall is an object that describes an invocation of
- // method CreateObject on an instance of MockLFSStore.
- type LFSStoreCreateObjectFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Arg2 is the value of the 3rd argument passed to this method
- // invocation.
- Arg2 lfsutil.OID
- // Arg3 is the value of the 4th argument passed to this method
- // invocation.
- Arg3 int64
- // Arg4 is the value of the 5th argument passed to this method
- // invocation.
- Arg4 lfsutil.Storage
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c LFSStoreCreateObjectFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3, c.Arg4}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c LFSStoreCreateObjectFuncCall) Results() []interface{} {
- return []interface{}{c.Result0}
- }
- // LFSStoreGetObjectByOIDFunc describes the behavior when the GetObjectByOID
- // method of the parent MockLFSStore instance is invoked.
- type LFSStoreGetObjectByOIDFunc struct {
- defaultHook func(context.Context, int64, lfsutil.OID) (*LFSObject, error)
- hooks []func(context.Context, int64, lfsutil.OID) (*LFSObject, error)
- history []LFSStoreGetObjectByOIDFuncCall
- mutex sync.Mutex
- }
- // GetObjectByOID delegates to the next hook function in the queue and
- // stores the parameter and result values of this invocation.
- func (m *MockLFSStore) GetObjectByOID(v0 context.Context, v1 int64, v2 lfsutil.OID) (*LFSObject, error) {
- r0, r1 := m.GetObjectByOIDFunc.nextHook()(v0, v1, v2)
- m.GetObjectByOIDFunc.appendCall(LFSStoreGetObjectByOIDFuncCall{v0, v1, v2, r0, r1})
- return r0, r1
- }
- // SetDefaultHook sets function that is called when the GetObjectByOID
- // method of the parent MockLFSStore instance is invoked and the hook queue
- // is empty.
- func (f *LFSStoreGetObjectByOIDFunc) SetDefaultHook(hook func(context.Context, int64, lfsutil.OID) (*LFSObject, error)) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // GetObjectByOID method of the parent MockLFSStore instance invokes the
- // hook at the front of the queue and discards it. After the queue is empty,
- // the default hook function is invoked for any future action.
- func (f *LFSStoreGetObjectByOIDFunc) PushHook(hook func(context.Context, int64, lfsutil.OID) (*LFSObject, error)) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *LFSStoreGetObjectByOIDFunc) SetDefaultReturn(r0 *LFSObject, r1 error) {
- f.SetDefaultHook(func(context.Context, int64, lfsutil.OID) (*LFSObject, error) {
- return r0, r1
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *LFSStoreGetObjectByOIDFunc) PushReturn(r0 *LFSObject, r1 error) {
- f.PushHook(func(context.Context, int64, lfsutil.OID) (*LFSObject, error) {
- return r0, r1
- })
- }
- func (f *LFSStoreGetObjectByOIDFunc) nextHook() func(context.Context, int64, lfsutil.OID) (*LFSObject, error) {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *LFSStoreGetObjectByOIDFunc) appendCall(r0 LFSStoreGetObjectByOIDFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of LFSStoreGetObjectByOIDFuncCall objects
- // describing the invocations of this function.
- func (f *LFSStoreGetObjectByOIDFunc) History() []LFSStoreGetObjectByOIDFuncCall {
- f.mutex.Lock()
- history := make([]LFSStoreGetObjectByOIDFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // LFSStoreGetObjectByOIDFuncCall is an object that describes an invocation
- // of method GetObjectByOID on an instance of MockLFSStore.
- type LFSStoreGetObjectByOIDFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Arg2 is the value of the 3rd argument passed to this method
- // invocation.
- Arg2 lfsutil.OID
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 *LFSObject
- // Result1 is the value of the 2nd result returned from this method
- // invocation.
- Result1 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c LFSStoreGetObjectByOIDFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1, c.Arg2}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c LFSStoreGetObjectByOIDFuncCall) Results() []interface{} {
- return []interface{}{c.Result0, c.Result1}
- }
- // LFSStoreGetObjectsByOIDsFunc describes the behavior when the
- // GetObjectsByOIDs method of the parent MockLFSStore instance is invoked.
- type LFSStoreGetObjectsByOIDsFunc struct {
- defaultHook func(context.Context, int64, ...lfsutil.OID) ([]*LFSObject, error)
- hooks []func(context.Context, int64, ...lfsutil.OID) ([]*LFSObject, error)
- history []LFSStoreGetObjectsByOIDsFuncCall
- mutex sync.Mutex
- }
- // GetObjectsByOIDs delegates to the next hook function in the queue and
- // stores the parameter and result values of this invocation.
- func (m *MockLFSStore) GetObjectsByOIDs(v0 context.Context, v1 int64, v2 ...lfsutil.OID) ([]*LFSObject, error) {
- r0, r1 := m.GetObjectsByOIDsFunc.nextHook()(v0, v1, v2...)
- m.GetObjectsByOIDsFunc.appendCall(LFSStoreGetObjectsByOIDsFuncCall{v0, v1, v2, r0, r1})
- return r0, r1
- }
- // SetDefaultHook sets function that is called when the GetObjectsByOIDs
- // method of the parent MockLFSStore instance is invoked and the hook queue
- // is empty.
- func (f *LFSStoreGetObjectsByOIDsFunc) SetDefaultHook(hook func(context.Context, int64, ...lfsutil.OID) ([]*LFSObject, error)) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // GetObjectsByOIDs method of the parent MockLFSStore instance invokes the
- // hook at the front of the queue and discards it. After the queue is empty,
- // the default hook function is invoked for any future action.
- func (f *LFSStoreGetObjectsByOIDsFunc) PushHook(hook func(context.Context, int64, ...lfsutil.OID) ([]*LFSObject, error)) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *LFSStoreGetObjectsByOIDsFunc) SetDefaultReturn(r0 []*LFSObject, r1 error) {
- f.SetDefaultHook(func(context.Context, int64, ...lfsutil.OID) ([]*LFSObject, error) {
- return r0, r1
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *LFSStoreGetObjectsByOIDsFunc) PushReturn(r0 []*LFSObject, r1 error) {
- f.PushHook(func(context.Context, int64, ...lfsutil.OID) ([]*LFSObject, error) {
- return r0, r1
- })
- }
- func (f *LFSStoreGetObjectsByOIDsFunc) nextHook() func(context.Context, int64, ...lfsutil.OID) ([]*LFSObject, error) {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *LFSStoreGetObjectsByOIDsFunc) appendCall(r0 LFSStoreGetObjectsByOIDsFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of LFSStoreGetObjectsByOIDsFuncCall objects
- // describing the invocations of this function.
- func (f *LFSStoreGetObjectsByOIDsFunc) History() []LFSStoreGetObjectsByOIDsFuncCall {
- f.mutex.Lock()
- history := make([]LFSStoreGetObjectsByOIDsFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // LFSStoreGetObjectsByOIDsFuncCall is an object that describes an
- // invocation of method GetObjectsByOIDs on an instance of MockLFSStore.
- type LFSStoreGetObjectsByOIDsFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Arg2 is a slice containing the values of the variadic arguments
- // passed to this method invocation.
- Arg2 []lfsutil.OID
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 []*LFSObject
- // Result1 is the value of the 2nd result returned from this method
- // invocation.
- Result1 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation. The variadic slice argument is flattened in this array such
- // that one positional argument and three variadic arguments would result in
- // a slice of four, not two.
- func (c LFSStoreGetObjectsByOIDsFuncCall) Args() []interface{} {
- trailing := []interface{}{}
- for _, val := range c.Arg2 {
- trailing = append(trailing, val)
- }
- return append([]interface{}{c.Arg0, c.Arg1}, trailing...)
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c LFSStoreGetObjectsByOIDsFuncCall) Results() []interface{} {
- return []interface{}{c.Result0, c.Result1}
- }
- // MockPermsStore is a mock implementation of the PermsStore interface (from
- // the package gogs.io/gogs/internal/db) used for unit testing.
- type MockPermsStore struct {
- // AccessModeFunc is an instance of a mock function object controlling
- // the behavior of the method AccessMode.
- AccessModeFunc *PermsStoreAccessModeFunc
- // AuthorizeFunc is an instance of a mock function object controlling
- // the behavior of the method Authorize.
- AuthorizeFunc *PermsStoreAuthorizeFunc
- // SetRepoPermsFunc is an instance of a mock function object controlling
- // the behavior of the method SetRepoPerms.
- SetRepoPermsFunc *PermsStoreSetRepoPermsFunc
- }
- // NewMockPermsStore creates a new mock of the PermsStore interface. All
- // methods return zero values for all results, unless overwritten.
- func NewMockPermsStore() *MockPermsStore {
- return &MockPermsStore{
- AccessModeFunc: &PermsStoreAccessModeFunc{
- defaultHook: func(context.Context, int64, int64, AccessModeOptions) (r0 AccessMode) {
- return
- },
- },
- AuthorizeFunc: &PermsStoreAuthorizeFunc{
- defaultHook: func(context.Context, int64, int64, AccessMode, AccessModeOptions) (r0 bool) {
- return
- },
- },
- SetRepoPermsFunc: &PermsStoreSetRepoPermsFunc{
- defaultHook: func(context.Context, int64, map[int64]AccessMode) (r0 error) {
- return
- },
- },
- }
- }
- // NewStrictMockPermsStore creates a new mock of the PermsStore interface.
- // All methods panic on invocation, unless overwritten.
- func NewStrictMockPermsStore() *MockPermsStore {
- return &MockPermsStore{
- AccessModeFunc: &PermsStoreAccessModeFunc{
- defaultHook: func(context.Context, int64, int64, AccessModeOptions) AccessMode {
- panic("unexpected invocation of MockPermsStore.AccessMode")
- },
- },
- AuthorizeFunc: &PermsStoreAuthorizeFunc{
- defaultHook: func(context.Context, int64, int64, AccessMode, AccessModeOptions) bool {
- panic("unexpected invocation of MockPermsStore.Authorize")
- },
- },
- SetRepoPermsFunc: &PermsStoreSetRepoPermsFunc{
- defaultHook: func(context.Context, int64, map[int64]AccessMode) error {
- panic("unexpected invocation of MockPermsStore.SetRepoPerms")
- },
- },
- }
- }
- // NewMockPermsStoreFrom creates a new mock of the MockPermsStore interface.
- // All methods delegate to the given implementation, unless overwritten.
- func NewMockPermsStoreFrom(i PermsStore) *MockPermsStore {
- return &MockPermsStore{
- AccessModeFunc: &PermsStoreAccessModeFunc{
- defaultHook: i.AccessMode,
- },
- AuthorizeFunc: &PermsStoreAuthorizeFunc{
- defaultHook: i.Authorize,
- },
- SetRepoPermsFunc: &PermsStoreSetRepoPermsFunc{
- defaultHook: i.SetRepoPerms,
- },
- }
- }
- // PermsStoreAccessModeFunc describes the behavior when the AccessMode
- // method of the parent MockPermsStore instance is invoked.
- type PermsStoreAccessModeFunc struct {
- defaultHook func(context.Context, int64, int64, AccessModeOptions) AccessMode
- hooks []func(context.Context, int64, int64, AccessModeOptions) AccessMode
- history []PermsStoreAccessModeFuncCall
- mutex sync.Mutex
- }
- // AccessMode delegates to the next hook function in the queue and stores
- // the parameter and result values of this invocation.
- func (m *MockPermsStore) AccessMode(v0 context.Context, v1 int64, v2 int64, v3 AccessModeOptions) AccessMode {
- r0 := m.AccessModeFunc.nextHook()(v0, v1, v2, v3)
- m.AccessModeFunc.appendCall(PermsStoreAccessModeFuncCall{v0, v1, v2, v3, r0})
- return r0
- }
- // SetDefaultHook sets function that is called when the AccessMode method of
- // the parent MockPermsStore instance is invoked and the hook queue is
- // empty.
- func (f *PermsStoreAccessModeFunc) SetDefaultHook(hook func(context.Context, int64, int64, AccessModeOptions) AccessMode) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // AccessMode method of the parent MockPermsStore instance invokes the hook
- // at the front of the queue and discards it. After the queue is empty, the
- // default hook function is invoked for any future action.
- func (f *PermsStoreAccessModeFunc) PushHook(hook func(context.Context, int64, int64, AccessModeOptions) AccessMode) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *PermsStoreAccessModeFunc) SetDefaultReturn(r0 AccessMode) {
- f.SetDefaultHook(func(context.Context, int64, int64, AccessModeOptions) AccessMode {
- return r0
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *PermsStoreAccessModeFunc) PushReturn(r0 AccessMode) {
- f.PushHook(func(context.Context, int64, int64, AccessModeOptions) AccessMode {
- return r0
- })
- }
- func (f *PermsStoreAccessModeFunc) nextHook() func(context.Context, int64, int64, AccessModeOptions) AccessMode {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *PermsStoreAccessModeFunc) appendCall(r0 PermsStoreAccessModeFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of PermsStoreAccessModeFuncCall objects
- // describing the invocations of this function.
- func (f *PermsStoreAccessModeFunc) History() []PermsStoreAccessModeFuncCall {
- f.mutex.Lock()
- history := make([]PermsStoreAccessModeFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // PermsStoreAccessModeFuncCall is an object that describes an invocation of
- // method AccessMode on an instance of MockPermsStore.
- type PermsStoreAccessModeFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Arg2 is the value of the 3rd argument passed to this method
- // invocation.
- Arg2 int64
- // Arg3 is the value of the 4th argument passed to this method
- // invocation.
- Arg3 AccessModeOptions
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 AccessMode
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c PermsStoreAccessModeFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c PermsStoreAccessModeFuncCall) Results() []interface{} {
- return []interface{}{c.Result0}
- }
- // PermsStoreAuthorizeFunc describes the behavior when the Authorize method
- // of the parent MockPermsStore instance is invoked.
- type PermsStoreAuthorizeFunc struct {
- defaultHook func(context.Context, int64, int64, AccessMode, AccessModeOptions) bool
- hooks []func(context.Context, int64, int64, AccessMode, AccessModeOptions) bool
- history []PermsStoreAuthorizeFuncCall
- mutex sync.Mutex
- }
- // Authorize delegates to the next hook function in the queue and stores the
- // parameter and result values of this invocation.
- func (m *MockPermsStore) Authorize(v0 context.Context, v1 int64, v2 int64, v3 AccessMode, v4 AccessModeOptions) bool {
- r0 := m.AuthorizeFunc.nextHook()(v0, v1, v2, v3, v4)
- m.AuthorizeFunc.appendCall(PermsStoreAuthorizeFuncCall{v0, v1, v2, v3, v4, r0})
- return r0
- }
- // SetDefaultHook sets function that is called when the Authorize method of
- // the parent MockPermsStore instance is invoked and the hook queue is
- // empty.
- func (f *PermsStoreAuthorizeFunc) SetDefaultHook(hook func(context.Context, int64, int64, AccessMode, AccessModeOptions) bool) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // Authorize method of the parent MockPermsStore instance invokes the hook
- // at the front of the queue and discards it. After the queue is empty, the
- // default hook function is invoked for any future action.
- func (f *PermsStoreAuthorizeFunc) PushHook(hook func(context.Context, int64, int64, AccessMode, AccessModeOptions) bool) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *PermsStoreAuthorizeFunc) SetDefaultReturn(r0 bool) {
- f.SetDefaultHook(func(context.Context, int64, int64, AccessMode, AccessModeOptions) bool {
- return r0
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *PermsStoreAuthorizeFunc) PushReturn(r0 bool) {
- f.PushHook(func(context.Context, int64, int64, AccessMode, AccessModeOptions) bool {
- return r0
- })
- }
- func (f *PermsStoreAuthorizeFunc) nextHook() func(context.Context, int64, int64, AccessMode, AccessModeOptions) bool {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *PermsStoreAuthorizeFunc) appendCall(r0 PermsStoreAuthorizeFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of PermsStoreAuthorizeFuncCall objects
- // describing the invocations of this function.
- func (f *PermsStoreAuthorizeFunc) History() []PermsStoreAuthorizeFuncCall {
- f.mutex.Lock()
- history := make([]PermsStoreAuthorizeFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // PermsStoreAuthorizeFuncCall is an object that describes an invocation of
- // method Authorize on an instance of MockPermsStore.
- type PermsStoreAuthorizeFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Arg2 is the value of the 3rd argument passed to this method
- // invocation.
- Arg2 int64
- // Arg3 is the value of the 4th argument passed to this method
- // invocation.
- Arg3 AccessMode
- // Arg4 is the value of the 5th argument passed to this method
- // invocation.
- Arg4 AccessModeOptions
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 bool
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c PermsStoreAuthorizeFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3, c.Arg4}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c PermsStoreAuthorizeFuncCall) Results() []interface{} {
- return []interface{}{c.Result0}
- }
- // PermsStoreSetRepoPermsFunc describes the behavior when the SetRepoPerms
- // method of the parent MockPermsStore instance is invoked.
- type PermsStoreSetRepoPermsFunc struct {
- defaultHook func(context.Context, int64, map[int64]AccessMode) error
- hooks []func(context.Context, int64, map[int64]AccessMode) error
- history []PermsStoreSetRepoPermsFuncCall
- mutex sync.Mutex
- }
- // SetRepoPerms delegates to the next hook function in the queue and stores
- // the parameter and result values of this invocation.
- func (m *MockPermsStore) SetRepoPerms(v0 context.Context, v1 int64, v2 map[int64]AccessMode) error {
- r0 := m.SetRepoPermsFunc.nextHook()(v0, v1, v2)
- m.SetRepoPermsFunc.appendCall(PermsStoreSetRepoPermsFuncCall{v0, v1, v2, r0})
- return r0
- }
- // SetDefaultHook sets function that is called when the SetRepoPerms method
- // of the parent MockPermsStore instance is invoked and the hook queue is
- // empty.
- func (f *PermsStoreSetRepoPermsFunc) SetDefaultHook(hook func(context.Context, int64, map[int64]AccessMode) error) {
- f.defaultHook = hook
- }
- // PushHook adds a function to the end of hook queue. Each invocation of the
- // SetRepoPerms method of the parent MockPermsStore instance invokes the
- // hook at the front of the queue and discards it. After the queue is empty,
- // the default hook function is invoked for any future action.
- func (f *PermsStoreSetRepoPermsFunc) PushHook(hook func(context.Context, int64, map[int64]AccessMode) error) {
- f.mutex.Lock()
- f.hooks = append(f.hooks, hook)
- f.mutex.Unlock()
- }
- // SetDefaultReturn calls SetDefaultHook with a function that returns the
- // given values.
- func (f *PermsStoreSetRepoPermsFunc) SetDefaultReturn(r0 error) {
- f.SetDefaultHook(func(context.Context, int64, map[int64]AccessMode) error {
- return r0
- })
- }
- // PushReturn calls PushHook with a function that returns the given values.
- func (f *PermsStoreSetRepoPermsFunc) PushReturn(r0 error) {
- f.PushHook(func(context.Context, int64, map[int64]AccessMode) error {
- return r0
- })
- }
- func (f *PermsStoreSetRepoPermsFunc) nextHook() func(context.Context, int64, map[int64]AccessMode) error {
- f.mutex.Lock()
- defer f.mutex.Unlock()
- if len(f.hooks) == 0 {
- return f.defaultHook
- }
- hook := f.hooks[0]
- f.hooks = f.hooks[1:]
- return hook
- }
- func (f *PermsStoreSetRepoPermsFunc) appendCall(r0 PermsStoreSetRepoPermsFuncCall) {
- f.mutex.Lock()
- f.history = append(f.history, r0)
- f.mutex.Unlock()
- }
- // History returns a sequence of PermsStoreSetRepoPermsFuncCall objects
- // describing the invocations of this function.
- func (f *PermsStoreSetRepoPermsFunc) History() []PermsStoreSetRepoPermsFuncCall {
- f.mutex.Lock()
- history := make([]PermsStoreSetRepoPermsFuncCall, len(f.history))
- copy(history, f.history)
- f.mutex.Unlock()
- return history
- }
- // PermsStoreSetRepoPermsFuncCall is an object that describes an invocation
- // of method SetRepoPerms on an instance of MockPermsStore.
- type PermsStoreSetRepoPermsFuncCall struct {
- // Arg0 is the value of the 1st argument passed to this method
- // invocation.
- Arg0 context.Context
- // Arg1 is the value of the 2nd argument passed to this method
- // invocation.
- Arg1 int64
- // Arg2 is the value of the 3rd argument passed to this method
- // invocation.
- Arg2 map[int64]AccessMode
- // Result0 is the value of the 1st result returned from this method
- // invocation.
- Result0 error
- }
- // Args returns an interface slice containing the arguments of this
- // invocation.
- func (c PermsStoreSetRepoPermsFuncCall) Args() []interface{} {
- return []interface{}{c.Arg0, c.Arg1, c.Arg2}
- }
- // Results returns an interface slice containing the results of this
- // invocation.
- func (c PermsStoreSetRepoPermsFuncCall) Results() []interface{} {
- return []interface{}{c.Result0}
- }
|