Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
P
parlote-facil
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Environnements
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
facil
parlote-facil
Validations
b19cdf2e
Valider
b19cdf2e
rédigé
14 years ago
par
Derrick Camerino
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
fixing N socketing bug
parent
07c216f3
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
2
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
lib/diaspora/user/receiving.rb
+4
-5
4 ajouts, 5 suppressions
lib/diaspora/user/receiving.rb
spec/models/user/receive_spec.rb
+12
-4
12 ajouts, 4 suppressions
spec/models/user/receive_spec.rb
avec
16 ajouts
et
9 suppressions
lib/diaspora/user/receiving.rb
+
4
−
5
Voir le fichier @
b19cdf2e
...
@@ -20,7 +20,6 @@ module Diaspora
...
@@ -20,7 +20,6 @@ module Diaspora
Rails
.
logger
.
debug
(
"Receiving object for
#{
self
.
real_name
}
:
\n
#{
object
.
inspect
}
"
)
Rails
.
logger
.
debug
(
"Receiving object for
#{
self
.
real_name
}
:
\n
#{
object
.
inspect
}
"
)
Rails
.
logger
.
debug
(
"From:
#{
object
.
person
.
inspect
}
"
)
if
object
.
person
Rails
.
logger
.
debug
(
"From:
#{
object
.
person
.
inspect
}
"
)
if
object
.
person
if
object
.
is_a?
(
Comment
)
||
object
.
is_a?
(
Post
)
if
object
.
is_a?
(
Comment
)
||
object
.
is_a?
(
Post
)
e
=
EMWebfinger
.
new
(
object
.
diaspora_handle
)
e
=
EMWebfinger
.
new
(
object
.
diaspora_handle
)
...
@@ -34,7 +33,7 @@ module Diaspora
...
@@ -34,7 +33,7 @@ module Diaspora
raise
"Not friends with that person"
unless
self
.
contact_for
(
salmon_author
)
raise
"Not friends with that person"
unless
self
.
contact_for
(
salmon_author
)
if
object
.
is_a?
(
Comment
)
if
object
.
is_a?
(
Comment
)
receive_comment
object
,
xml
receive_comment
object
,
xml
else
else
receive_post
object
,
xml
receive_post
object
,
xml
...
@@ -137,11 +136,11 @@ module Diaspora
...
@@ -137,11 +136,11 @@ module Diaspora
self
.
save
self
.
save
aspects
=
self
.
aspects_with_person
(
post
.
person
)
aspects
=
self
.
aspects_with_person
(
post
.
person
)
aspects
.
each
{
|
aspect
|
aspects
.
each
do
|
aspect
|
aspect
.
posts
<<
post
aspect
.
posts
<<
post
aspect
.
save
aspect
.
save
post
.
socket_to_uid
(
id
,
:aspect_ids
=>
[
aspect
.
id
])
if
(
post
.
respond_to?
(
:socket_to_uid
)
&&
!
self
.
owns?
(
post
))
end
}
post
.
socket_to_uid
(
id
,
:aspect_ids
=>
aspects
.
map
(
&
:id
))
if
(
post
.
respond_to?
(
:socket_to_uid
)
&&
!
self
.
owns?
(
post
))
end
end
end
end
end
end
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
spec/models/user/receive_spec.rb
+
12
−
4
Voir le fichier @
b19cdf2e
...
@@ -19,6 +19,14 @@ describe User do
...
@@ -19,6 +19,14 @@ describe User do
friend_users
(
user
,
aspect
,
user2
,
aspect2
)
friend_users
(
user
,
aspect
,
user2
,
aspect2
)
end
end
it
'should stream only one message to the everyone aspect when a multi-aspected friend posts'
do
user
.
add_person_to_aspect
(
user2
.
person
.
id
,
user
.
aspect
(
:name
=>
"villains"
).
id
)
status
=
user2
.
post
(
:status_message
,
:message
=>
"Users do things"
,
:to
=>
aspect2
.
id
)
xml
=
status
.
to_diaspora_xml
Diaspora
::
WebSocket
.
should_receive
(
:queue_to_user
).
exactly
(
:once
)
user
.
receive
xml
,
user2
.
person
end
it
'should be able to parse and store a status message from xml'
do
it
'should be able to parse and store a status message from xml'
do
status_message
=
user2
.
post
:status_message
,
:message
=>
'store this!'
,
:to
=>
aspect2
.
id
status_message
=
user2
.
post
:status_message
,
:message
=>
'store this!'
,
:to
=>
aspect2
.
id
...
@@ -113,11 +121,11 @@ describe User do
...
@@ -113,11 +121,11 @@ describe User do
post_in_db
.
comments
.
should
==
[]
post_in_db
.
comments
.
should
==
[]
user2
.
receive_salmon
(
@xml
)
user2
.
receive_salmon
(
@xml
)
post_in_db
.
reload
post_in_db
.
reload
post_in_db
.
comments
.
include?
(
@comment
).
should
be
true
post_in_db
.
comments
.
include?
(
@comment
).
should
be
true
post_in_db
.
comments
.
first
.
person
.
should
==
local_person
post_in_db
.
comments
.
first
.
person
.
should
==
local_person
end
end
it
'should correctly marshal a stranger for the downstream user'
do
it
'should correctly marshal a stranger for the downstream user'
do
remote_person
=
user3
.
person
remote_person
=
user3
.
person
remote_person
.
delete
remote_person
.
delete
...
@@ -127,13 +135,13 @@ describe User do
...
@@ -127,13 +135,13 @@ describe User do
Person
.
should_receive
(
:by_account_identifier
).
twice
.
and_return
{
|
handle
|
if
handle
==
user
.
person
.
diaspora_handle
;
user
.
person
.
save
Person
.
should_receive
(
:by_account_identifier
).
twice
.
and_return
{
|
handle
|
if
handle
==
user
.
person
.
diaspora_handle
;
user
.
person
.
save
user
.
person
;
else
;
remote_person
.
save
;
remote_person
;
end
}
user
.
person
;
else
;
remote_person
.
save
;
remote_person
;
end
}
user2
.
reload
.
raw_visible_posts
.
size
.
should
==
1
user2
.
reload
.
raw_visible_posts
.
size
.
should
==
1
post_in_db
=
user2
.
raw_visible_posts
.
first
post_in_db
=
user2
.
raw_visible_posts
.
first
post_in_db
.
comments
.
should
==
[]
post_in_db
.
comments
.
should
==
[]
user2
.
receive_salmon
(
@xml
)
user2
.
receive_salmon
(
@xml
)
post_in_db
.
reload
post_in_db
.
reload
post_in_db
.
comments
.
include?
(
@comment
).
should
be
true
post_in_db
.
comments
.
include?
(
@comment
).
should
be
true
post_in_db
.
comments
.
first
.
person
.
should
==
remote_person
post_in_db
.
comments
.
first
.
person
.
should
==
remote_person
end
end
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter