Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[БАГ]: Исключение при получении списка всех альбомов пользователя включая системные #186

Open
2 of 3 tasks
AKCEJIb opened this issue Nov 24, 2022 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@AKCEJIb
Copy link

AKCEJIb commented Nov 24, 2022

Чеклист

  • Я убедился, что похожая проблема еще не была описана

  • VKWave установлен из (выберите один вариант)

    • PyPI
    • Github

Описание

Получение всех альбомов включая системные (при использовании need_system=True) выбрасывает исключение парсинга модели PhotosGetAlbumsResponse.

Конкретно не могут быть распаршены поля в PhotosPhotoAlbumFull.

Трейсбек (лог с ошибкой)

Exception has occurred: ValidationError
6 validation errors for PhotosGetAlbumsResponse
response -> items -> 0 -> created
  field required (type=value_error.missing)
response -> items -> 0 -> updated
  field required (type=value_error.missing)
response -> items -> 1 -> created
  field required (type=value_error.missing)
response -> items -> 1 -> updated
  field required (type=value_error.missing)
response -> items -> 2 -> created
  field required (type=value_error.missing)
response -> items -> 2 -> updated
  field required (type=value_error.missing)

Код, вызвающий ошибку

token = UserSyncSingleToken(Token(text_token))
async with API(tokens=token) as api:
    api_ctx = api.get_context()

    test = await api_ctx.photos.get_albums(need_system=True)

    print(test)

Ожидаемое поведение

Модель должна парсится без проблем

Решение

Системные альбомы не имеют полей created и updated, поэтому эти поля нужно сделать опциональными в PhotosPhotoAlbumFull

P.S: прошу, покройте код юнит-тестами 🧪

@AKCEJIb AKCEJIb added the bug Something isn't working label Nov 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants