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
Mariana Pires - Exercício S08 #14
Open
mariprs
wants to merge
6
commits into
reprograma:main
Choose a base branch
from
mariprs: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
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0f5cd63
Tentativa de completar o exercício. Em breve tento fazer o restante
mariprs 04e42e6
Mariana Pires - Exercício S08
mariprs 08dd7cf
Mariana Pires - Exercício S08
mariprs d8af41b
Mudanças importantes pra que o código funcione da melhor forma
mariprs 26dc4b7
Quando dei o pull bugou uma linha hahah
mariprs b76b2d3
Escrevi uma variável errada
mariprs 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,26 @@ | ||
from Livro import Livro | ||
|
||
class Biblioteca : | ||
def __init__(self): #Construtor | ||
self.livros = [] #Lista de livros vazia | ||
|
||
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) #Caso o valor seja válido, add o livro à lista self.livros | ||
|
||
def exibir_livros(self): #Função que retorna a lista | ||
# return [livro.nome for livro in self.livros] << isso exibiria apenas os nomes | ||
return self.livros #Retornar a lista self.livros encontrada em __init__ | ||
|
||
def emprestar_livro(self, nome_do_livro): | ||
for livro in self.livros: #Para cada livro em self.livros | ||
if livro.nome == nome_do_livro: #Se o nome do livro for igual à variável que eu criei nome_do_livro, ou seja, se ele existe | ||
if not livro.esta_emprestado: #E se ele já não foi emprestado | ||
livro.esta_emprestado = True #Agora ele será emprestado | ||
return True #Aqui a gente indica que o empréstimo foi bem sucedido | ||
return False #Se o livro foi emprestado, o empréstimo não será bem sucedido | ||
return False #Se o nome não for igual ao nome de um livro existente na lista, ele será falso | ||
|
||
|
||
|
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
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,11 @@ | ||
from Biblioteca import Biblioteca | ||
from Livro import Livro | ||
nome_livro = "O mito da beleza" | ||
autor_livro = "Naomi Wolf" | ||
livro_objeto = Livro(nome = nome_livro, autor = autor_livro) | ||
|
||
biblioteca_objeto = Biblioteca() | ||
|
||
print(biblioteca_objeto.livros) | ||
|
||
biblioteca_objeto.adicionar_livro(livro_objeto) |
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,46 @@ | ||
from unittest import TestCase #Identificador de uma classe de testes | ||
from Biblioteca import Biblioteca | ||
from Livro import Livro | ||
|
||
class TestBiblioteca(TestCase): | ||
#Utilizado para não precisar chamar a biblioteca em todas as funções | ||
def setUp(self): | ||
self.biblioteca = Biblioteca() | ||
|
||
def test_init_deve_passar(self): | ||
# Arrange / Act | ||
# Assert | ||
self.assertIsInstance(self.biblioteca.livros, list) | ||
|
||
def test_adicionar_livro_deve_passar(self): | ||
# Arrange | ||
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(1, len(self.biblioteca.livros)) | ||
|
||
def test_adicionar_livro_nao_deve_inserir_numero(self): | ||
# Arrange | ||
livro = 1988 | ||
|
||
# Act / Assert | ||
with self.assertRaises(TypeError): | ||
self.biblioteca.adicionar_livro(livro) | ||
|
||
def test_emprestar_livro_inexistente_deve_retornar_false(self): | ||
#Act/Assert | ||
self.assertFalse(self.biblioteca.emprestar_livro("Livro Inexistente")) | ||
|
||
def test_exibir_livros_deve_retornar_lista_de_nomes(self): | ||
# Arrange | ||
livro1 = Livro("Uzumaki", "Junji Ito") | ||
livro2 = Livro("Tomie", "Junji Ito") | ||
self.biblioteca.adicionar_livro(livro1) | ||
self.biblioteca.adicionar_livro(livro2) | ||
# Act | ||
lista_de_nomes = self.biblioteca.exibir_livros() | ||
# Assert | ||
self.assertEqual(["Uzumaki", "Tomie"], [livro.nome for livro in lista_de_nomes]) #Verifica se ambos os valores são iguais, se forem o teste passará |
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,32 @@ | ||
from unittest import TestCase | ||
from Biblioteca import Biblioteca | ||
from Livro import Livro | ||
|
||
class TestLivro(TestCase): | ||
def setUp(self): | ||
self.biblioteca = Biblioteca() | ||
|
||
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) | ||
|
||
def test_emprestar_livro_deve_marcar_como_emprestado(self): | ||
# Arrange | ||
nome_do_livro = "Aura" | ||
autor_do_livro = "Carlos Fuentes" | ||
livro = Livro(nome_do_livro, autor_do_livro) | ||
self.biblioteca.adicionar_livro(livro) #Add livro à lista | ||
|
||
# Act | ||
emprestado = self.biblioteca.emprestar_livro(nome_do_livro) | ||
|
||
# Assert | ||
self.assertTrue(emprestado) # Verifica se o empréstimo funcionou e se o livro está marcado como emprestado | ||
self.assertTrue(livro.esta_emprestado) |
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.
bacana demais que usou list comprehension