generated from reprograma/onX-sx-temaX
-
Notifications
You must be signed in to change notification settings - Fork 38
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
Projeto 2 #15
Open
TaianneR
wants to merge
3
commits into
reprograma:main
Choose a base branch
from
TaianneR:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Projeto 2 #15
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
from Livro import Livro | ||
|
||
class Biblioteca: | ||
|
||
def __init__(self): | ||
#self.livros = [], mudou pra: | ||
nome_livro = 'initNome' | ||
autor_livro = 'initAutor' | ||
livro = Livro(nome_livro, autor_livro) | ||
self.livros = [livro.nome] | ||
#testar | ||
|
||
def adicionar_livro(self, livro: Livro): | ||
if (not isinstance(livro, Livro)): | ||
raise TypeError(f'Esperado Livro, obtido valor {livro} do tipo {type(livro)}') | ||
self.livros.append(livro) | ||
|
||
|
||
def exibir_livro(self): | ||
lista_livros = self.livros | ||
print(lista_livros) | ||
|
||
def emprestar_livro(self, nome_livro): | ||
for livro in self.livros: | ||
if livro['nome'] == nome_livro: | ||
livro['emprestado'] = True | ||
break |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class Livro: | ||
def __init__(self, nome, autor): | ||
self.nome = nome | ||
self.autor = autor | ||
self.esta_emprestado = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
|
||
class ExibirLivros: | ||
def _init_(self, Biblioteca): | ||
self.Biblioteca = Biblioteca | ||
|
||
def listar_livros(self): | ||
livros = self.Biblioteca.exibir_livros() | ||
if not livros: | ||
raise ValueError("A biblioteca está vazia. Não há livros para exibir.") | ||
|
||
for livro in livros: | ||
print(livro) | ||
|
Submodule on26-python-s08-projeto-guiado-II
added at
4831f0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
|
||
from unittest import TestCase | ||
from Biblioteca import Biblioteca | ||
from Livro import Livro | ||
|
||
#atualizações na classe testBiblioteca de segunda | ||
|
||
class testBiblioteca(TestCase): | ||
|
||
def setUp(self): | ||
self.biblioteca = Biblioteca() | ||
|
||
def test_init_deve_passar(self): | ||
|
||
#Arrange/Act | ||
#biblioteca = Biblioteca() | ||
|
||
#Assert | ||
self.assertIsInstance(self.biblioteca.livros, list) | ||
|
||
def test_adicionar_livros_deve_passar(self): | ||
|
||
#Arrange | ||
#biblioteca = Biblioteca() | ||
nome_livro = 'O mito da beleza' | ||
autor_livro = 'Naomi Wolf' | ||
livro = Livro(nome_livro, autor_livro) | ||
|
||
#Act | ||
self.biblioteca.adicionar_livro(livro) | ||
|
||
#Assert | ||
self.assertEqual(2, len(self.biblioteca.livros)) | ||
|
||
def test_adicionar_livro_nao_deve_inserir_numero(self): | ||
|
||
#Arrange | ||
#biblioteca = Biblioteca() | ||
livro = 1988 | ||
|
||
#Act | ||
#biblioteca.adicionar_livro(livro) | ||
|
||
#Assert | ||
with self.assertRaises(TypeError): | ||
self.biblioteca.adicionar_livro(livro) | ||
|
||
|
||
|
||
def test_exibir_livro_deve_passar(self): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A partir dessa linha o código não está indentado, acho que é por isso que o teste estava cinza ontem na apresentação e não executava. Vc pode usar os atalhos do VS code para formatar o arquivo ou ir no menu View > Command Palette > Format |
||
|
||
#Arrange | ||
#biblioteca = Biblioteca() | ||
nome_livro = 'O mito da beleza' | ||
autor_livro = 'Naomi Wolf' | ||
lista_livros = self.biblioteca.livros | ||
#livro = Livro(nome_livro, autor_livro) | ||
|
||
#Act | ||
self.biblioteca.exibir_livro() | ||
|
||
#Assert | ||
self.assertEqual(self.biblioteca.exibir_livro(), print(lista_livros)) | ||
|
||
def test_emprestar_livro_naLista_deve_passar(self): | ||
|
||
#Arrange | ||
nome = 'python guia pratico do básico ao avançado' | ||
autor = 'Rafael FVC Santos' | ||
livro = Livro(nome, autor) | ||
self.biblioteca.livros = ['Psicologia Financeira', 'Dom Casmurro', 'O pequeno principe'] | ||
lista_livros = self.biblioteca.livros | ||
|
||
#Act | ||
self.biblioteca.emprestar_livro(livro) | ||
|
||
#Assert | ||
self.assertTrue(livro.nome not in lista_livros) | ||
|
||
|
||
# Adiciona alguns livros à biblioteca | ||
livro1 = Livro("Livro 1", "Autor 1") | ||
livro2 = Livro("Livro 2", "Autor 2") | ||
Biblioteca.adicionar_livro(livro1) | ||
Biblioteca.adicionar_livro(livro2) | ||
|
||
# Verifica que os livros não estão emprestados inicialmente | ||
self.assertFalse(livro1.emprestado) | ||
self.assertFalse(livro2.emprestado) | ||
|
||
# Empresta um livro | ||
Biblioteca.emprestar_livro("Livro 1") | ||
|
||
# Verifica que apenas o livro emprestado foi atualizado | ||
self.assertTrue(livro1.emprestado) | ||
self.assertFalse(livro2.emprestado) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from unittest import TestCase | ||
from Livro import Livro | ||
|
||
class TestLivro(TestCase): | ||
def test_init_deve_passar(self): | ||
# Arrange | ||
nome = "Calibã e a bruxa" | ||
autor = "Silvia Federici" | ||
|
||
# Act | ||
livro = Livro(nome, autor) | ||
|
||
# Assert | ||
self.assertEqual(nome, livro.nome) | ||
self.assertEqual(autor, livro.autor) | ||
self.assertEqual(False, livro.esta_emprestado) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from unittest import TestCase | ||
from Biblioteca import Biblioteca | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Olá, Taianne
Massa demais que fez as lógicas propostas. Nessa linha tem um pequeno erro em
livro['nome']
o seu livro já é um objeto livro por isso ele já tem as propriedades livro.nome e livro.esta_emprestado