@@ -20,8 +20,11 @@ import { INestApplication, Module, ValidationPipe } from '@nestjs/common';
20
20
import * as KeyResolver from 'key-did-resolver' ;
21
21
import { TestingModule } from '@nestjs/testing' ;
22
22
import crypto from 'crypto' ;
23
- import { HiveChainRepository } from '../../repositories/hive-chain/hive-chain.repository' ;
24
23
import { PrivateKey } from '@hiveio/dhive' ;
24
+ import { AuthGuard } from '@nestjs/passport' ;
25
+ import { MockAuthGuard , MockUserDetailsInterceptor , UserDetailsInterceptor } from '../api/utils' ;
26
+ import { HiveService } from '../hive/hive.service' ;
27
+ import { HiveModule } from '../hive/hive.module' ;
25
28
26
29
describe ( 'AuthController' , ( ) => {
27
30
let app : INestApplication
@@ -31,7 +34,7 @@ describe('AuthController', () => {
31
34
const did = new DID ( { provider : key , resolver : KeyResolver . getResolver ( ) } )
32
35
let mongod : MongoMemoryServer ;
33
36
let authService : AuthService ;
34
- let hiveChainRepository : HiveChainRepository ;
37
+ let hiveService : HiveService ;
35
38
36
39
37
40
beforeEach ( async ( ) => {
@@ -77,6 +80,7 @@ describe('AuthController', () => {
77
80
HiveChainModule ,
78
81
EmailModule ,
79
82
AuthModule ,
83
+ HiveModule
80
84
] ,
81
85
controllers : [ AuthController ] ,
82
86
providers : [ AuthService ]
@@ -87,9 +91,13 @@ describe('AuthController', () => {
87
91
88
92
moduleRef = await Test . createTestingModule ( {
89
93
imports : [ TestModule ] ,
90
- } ) . compile ( ) ;
94
+ } ) . overrideGuard ( AuthGuard ( 'jwt' ) )
95
+ . useClass ( MockAuthGuard )
96
+ . overrideInterceptor ( UserDetailsInterceptor )
97
+ . useClass ( MockUserDetailsInterceptor )
98
+ . compile ( ) ;
91
99
authService = moduleRef . get < AuthService > ( AuthService ) ;
92
- hiveChainRepository = moduleRef . get < HiveChainRepository > ( HiveChainRepository ) ;
100
+ hiveService = moduleRef . get < HiveService > ( HiveService ) ;
93
101
app = moduleRef . createNestApplication ( ) ;
94
102
app . useGlobalPipes ( new ValidationPipe ( ) ) ;
95
103
await app . init ( )
@@ -129,7 +137,40 @@ describe('AuthController', () => {
129
137
} ) ;
130
138
} ) ;
131
139
132
- describe ( '/POST login singleton hive' , ( ) => {
140
+ describe ( '/POST /request_hive_account' , ( ) => {
141
+ it ( 'creates a Hive account successfully' , async ( ) => {
142
+
143
+ // Make the request to the endpoint
144
+ return request ( app . getHttpServer ( ) )
145
+ . post ( '/api/v1/auth/request_hive_account' )
146
+ . send ( { username : 'test_user_id' } )
147
+ . set ( 'Authorization' , 'Bearer <your_mocked_jwt_token>' )
148
+ . expect ( 201 )
149
+ . then ( response => {
150
+ expect ( response . body ) . toEqual ( { } ) ;
151
+ } ) ;
152
+ } ) ;
153
+
154
+ it ( 'throws error when user has already created a Hive account' , async ( ) => {
155
+
156
+ await hiveService . requestHiveAccount ( 'yeet' , 'test_user_id' )
157
+
158
+ // Make the request to the endpoint
159
+ return request ( app . getHttpServer ( ) )
160
+ . post ( '/api/v1/auth/request_hive_account' )
161
+ . send ( { username : 'yeet' } )
162
+ . set ( 'Authorization' , 'Bearer <your_mocked_jwt_token>' )
163
+ . expect ( 400 )
164
+ . then ( response => {
165
+ expect ( response . body ) . toEqual ( {
166
+ reason : "You have already created the maximum of 1 free Hive account" ,
167
+ } ) ;
168
+ } ) ;
169
+ } ) ;
170
+ } ) ;
171
+
172
+
173
+ describe ( '/POST login_singleton_hive' , ( ) => {
133
174
it ( 'Logs in sucessfully on the happy path' , async ( ) => {
134
175
const privateKey = PrivateKey . fromSeed ( crypto . randomBytes ( 32 ) . toString ( "hex" ) ) ;
135
176
const message = { account : 'sisygoboom' , ts : Date . now ( ) } ;
0 commit comments