|
1 | 1 | import BigNumber from 'bignumber.js';
|
2 | 2 | import { when } from 'jest-when';
|
3 | 3 |
|
4 |
| -import { Context, Entity, Nft, PolymeshTransaction } from '~/internal'; |
| 4 | +import { Context, Entity, Nft, PolymeshError, PolymeshTransaction } from '~/internal'; |
5 | 5 | import { dsMockUtils, entityMockUtils, procedureMockUtils } from '~/testUtils/mocks';
|
| 6 | +import { ErrorCode } from '~/types'; |
6 | 7 | import { tuple } from '~/types/utils';
|
| 8 | +import * as utilsConversionModule from '~/utils/conversion'; |
7 | 9 |
|
8 | 10 | jest.mock(
|
9 | 11 | '~/api/entities/Asset/NonFungible',
|
@@ -94,40 +96,23 @@ describe('Nft class', () => {
|
94 | 96 | });
|
95 | 97 |
|
96 | 98 | describe('method: exists', () => {
|
97 |
| - it('should return true when Nft Id is less than or equal to nextId for the collection', async () => { |
| 99 | + it('should return whether NFT exists or not', async () => { |
98 | 100 | const ticker = 'TICKER';
|
99 | 101 | const context = dsMockUtils.getContextInstance();
|
100 | 102 | const id = new BigNumber(3);
|
101 | 103 | const nft = new Nft({ ticker, id }, context);
|
102 | 104 |
|
103 |
| - entityMockUtils.getNftCollectionInstance({ |
104 |
| - getCollectionId: id, |
105 |
| - }); |
| 105 | + const getOwnerSpy = jest.spyOn(nft, 'getOwner'); |
106 | 106 |
|
107 |
| - dsMockUtils.createQueryMock('nft', 'nextNFTId', { |
108 |
| - returnValue: new BigNumber(10), |
109 |
| - }); |
| 107 | + getOwnerSpy.mockResolvedValueOnce(entityMockUtils.getDefaultPortfolioInstance()); |
110 | 108 |
|
111 |
| - const result = await nft.exists(); |
| 109 | + let result = await nft.exists(); |
112 | 110 |
|
113 | 111 | expect(result).toBe(true);
|
114 |
| - }); |
115 |
| - |
116 |
| - it('should return false when Nft Id is greater than nextId for the collection', async () => { |
117 |
| - const ticker = 'TICKER'; |
118 |
| - const context = dsMockUtils.getContextInstance(); |
119 |
| - const id = new BigNumber(3); |
120 |
| - const nft = new Nft({ ticker, id }, context); |
121 | 112 |
|
122 |
| - entityMockUtils.getNftCollectionInstance({ |
123 |
| - getCollectionId: id, |
124 |
| - }); |
| 113 | + getOwnerSpy.mockResolvedValueOnce(null); |
125 | 114 |
|
126 |
| - dsMockUtils.createQueryMock('nft', 'nextNFTId', { |
127 |
| - returnValue: new BigNumber(1), |
128 |
| - }); |
129 |
| - |
130 |
| - const result = await nft.exists(); |
| 115 | + result = await nft.exists(); |
131 | 116 |
|
132 | 117 | expect(result).toBe(false);
|
133 | 118 | });
|
@@ -380,6 +365,89 @@ describe('Nft class', () => {
|
380 | 365 | });
|
381 | 366 | });
|
382 | 367 |
|
| 368 | + describe('method: getOwner', () => { |
| 369 | + const ticker = 'TEST'; |
| 370 | + const id = new BigNumber(1); |
| 371 | + let context: Context; |
| 372 | + let nftOwnerMock: jest.Mock; |
| 373 | + let nft: Nft; |
| 374 | + |
| 375 | + beforeEach(async () => { |
| 376 | + context = dsMockUtils.getContextInstance(); |
| 377 | + nftOwnerMock = dsMockUtils.createQueryMock('nft', 'nftOwner'); |
| 378 | + nft = new Nft({ ticker, id }, context); |
| 379 | + }); |
| 380 | + |
| 381 | + it('should return null if no owner exists', async () => { |
| 382 | + nftOwnerMock.mockResolvedValueOnce(dsMockUtils.createMockOption()); |
| 383 | + |
| 384 | + const result = await nft.getOwner(); |
| 385 | + |
| 386 | + expect(result).toBeNull(); |
| 387 | + }); |
| 388 | + |
| 389 | + it('should return the owner of the NFT', async () => { |
| 390 | + const meshPortfolioIdToPortfolioSpy = jest.spyOn( |
| 391 | + utilsConversionModule, |
| 392 | + 'meshPortfolioIdToPortfolio' |
| 393 | + ); |
| 394 | + |
| 395 | + const rawPortfolio = dsMockUtils.createMockPortfolioId({ |
| 396 | + did: 'someDid', |
| 397 | + kind: dsMockUtils.createMockPortfolioKind({ |
| 398 | + User: dsMockUtils.createMockU64(new BigNumber(1)), |
| 399 | + }), |
| 400 | + }); |
| 401 | + |
| 402 | + nftOwnerMock.mockResolvedValueOnce(dsMockUtils.createMockOption(rawPortfolio)); |
| 403 | + const portfolio = entityMockUtils.getNumberedPortfolioInstance(); |
| 404 | + |
| 405 | + when(meshPortfolioIdToPortfolioSpy) |
| 406 | + .calledWith(rawPortfolio, context) |
| 407 | + .mockReturnValue(portfolio); |
| 408 | + |
| 409 | + const result = await nft.getOwner(); |
| 410 | + |
| 411 | + expect(result).toBe(portfolio); |
| 412 | + }); |
| 413 | + }); |
| 414 | + |
| 415 | + describe('method: isLocked', () => { |
| 416 | + const ticker = 'TEST'; |
| 417 | + const id = new BigNumber(1); |
| 418 | + let context: Context; |
| 419 | + let nft: Nft; |
| 420 | + let ownerSpy: jest.SpyInstance; |
| 421 | + |
| 422 | + beforeEach(async () => { |
| 423 | + context = dsMockUtils.getContextInstance(); |
| 424 | + nft = new Nft({ ticker, id }, context); |
| 425 | + ownerSpy = jest.spyOn(nft, 'getOwner'); |
| 426 | + }); |
| 427 | + |
| 428 | + it('should throw an error if NFT has no owner', () => { |
| 429 | + ownerSpy.mockResolvedValueOnce(null); |
| 430 | + |
| 431 | + const error = new PolymeshError({ |
| 432 | + code: ErrorCode.DataUnavailable, |
| 433 | + message: 'NFT does not exists. The token may have been redeemed', |
| 434 | + }); |
| 435 | + return expect(nft.isLocked()).rejects.toThrow(error); |
| 436 | + }); |
| 437 | + |
| 438 | + it('should return whether NFT is locked in any settlement', async () => { |
| 439 | + ownerSpy.mockResolvedValue(entityMockUtils.getDefaultPortfolioInstance()); |
| 440 | + |
| 441 | + dsMockUtils.createQueryMock('portfolio', 'portfolioLockedNFT', { |
| 442 | + returnValue: dsMockUtils.createMockBool(true), |
| 443 | + }); |
| 444 | + |
| 445 | + const result = await nft.isLocked(); |
| 446 | + |
| 447 | + expect(result).toBe(true); |
| 448 | + }); |
| 449 | + }); |
| 450 | + |
383 | 451 | describe('method: toHuman', () => {
|
384 | 452 | it('should return a human readable version of the entity', () => {
|
385 | 453 | const context = dsMockUtils.getContextInstance();
|
|
0 commit comments